You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I remove all ticks? The help doc says,
Pass an empty list to remove all ticks::
set_yticks([])
This used to work with PyPlot.jl (although I have not tried it after some system update), but with PythonPlot, i am getting the following error:
ERROR: Python: ConversionError: Failed to convert value(s) to axis units: Julia: Any[]
Thank you in advance!
The text was updated successfully, but these errors were encountered:
See JuliaPy/PythonCall.jl#486 — PythonCall converts [] == Any[] into something like a numpy array of object, which is treated quite differently in numpy than a Python list.
How can I remove all ticks? The help doc says,
Pass an empty list to remove all ticks::
set_yticks([])
This used to work with PyPlot.jl (although I have not tried it after some system update), but with PythonPlot, i am getting the following error:
ERROR: Python: ConversionError: Failed to convert value(s) to axis units: Julia: Any[]
Thank you in advance!
The text was updated successfully, but these errors were encountered: