I am trying to manually set the tick frequency:
xticks([0.0, 1.0, 2.0]) works fine
however,
yticks([0.0, 1.0, 2.0]) throws the following error
type: apply: expected Function, got Array{Float64,1}
Use square brackets [] for indexing.
while loading In[21], in expression starting on line 8
in getindex at C:\Users\zahir\.julia\v0.3\PyCall\src\PyCall.jl:625
in pysequence_query at C:\Users\zahir\.julia\v0.3\PyCall\src\conversions.jl:741
in pysequence_query at C:\Users\zahir\.julia\v0.3\PyCall\src\conversions.jl:740
What am I doing wrong?