I am new to Julia and try to get a simple x-y plot through Gadfly Pkg. I am trying to plot x-axis in log scale and set min and max value in the same time.
plot(layer(rdsPmos, x="A", y="B", Geom.line), Scale.x_log10(minvalue= 10), Theme(default_point_size = 1.5px))
This won't get any error message. The outcome plot has a log scale x-axis but the minvalue seems not work.
I also try to write lise this:
plot(layer(rdsPmos, x="A", y="B", Geom.line), Scale.x_log10, Scale.x_continuous(minvalue= 10), Theme(default_point_size = 1.5px))
And the result is the minvalue work but the logscale fail.


