Python Matplotlib remove xlabels but not grid -
is there way remove labels of x axis, not grid lines?
both solutions remove labels removed grid lines.
i tried: axes.get_xaxis().set_visible(false)
, axes.get_xaxis().set_ticks([])
try this: axes.xaxis.set_tick_params(label1on=false)
Comments
Post a Comment