I'm trying to hide the axis labels on the first subplot at 211. I'd like to label the figure, not just a subplot (reference: "Isub Event Characteristics"). How can I control font properties like size, font, color?
f = Figure() vdsvgsPlot = f.add_subplot(211) vdsvgsPlot.plot(theLister()[3],theLister()[0]) vdsvgsPlot.plot(theLister()[3],theLister()[1]) isubPlot = f.add_subplot(212) isubPlot.plot(theLister()[3],theLister()[2]) plotCanvas = FigureCanvasTkAgg(f, master) toolbar = NavigationToolbar2TkAgg(plotCanvas, master) plotCanvas.get_tk_widget().pack()
Thank you in advance.
Matplotlib removes both labels and ticks by using xaxis. set_visible() set_visible() method removes axis ticks, axis tick labels, and axis labels also. It makes the axis invisible completely.
Data Visualization using R Programming When we create a plot in R, the Y-axis labels are automatically generated and if we want to remove those labels, the plot function can help us. For this purpose, we need to set ylab argument of plot function to blank as ylab="" and yaxt="n" to remove the axis title.
You have several different questions here... Let me break them up a bit...
By "hide the axis labels on the first subplot" do you mean the actual axis labels (which aren't there unless you specify them), the tick labels (i.e. the numbers along the axis), the axis ticks, or all of the above?
If you mean "all of the above", just do ax.xaxis.set_visible(False)
and the same for the y-axis. (ax
here would be vdsvgsPlot
in your example code above)
If you mean the axis tick labels, just set them to []
, i.e.: ax.set_xticklabels([])
. (and set_yticklabels
for the y-axis)
If you mean the axis ticks, you can do something similar: ax.set_xticks([])
and ax.set_yticks([])
which will turn off both the ticks and ticklabels.
As to the second question, use suptitle
to title the entire figure. i.e.: fig.suptitle('whatever')
(f.suptitle...
in your example code above).
As for how to control the font properties, you can either pass various keyword arguments to suptitle
(or anything else that creates text on a plot) or set them after you create the text. For example fig.suptitle('This is a title', size=20, horizontalalignment='left', font='Times', color='red')
In general, I would suggest you look through the various user's guide, gallery of examples (all of which have the source code included), the pyplot api docs, and the detailed api docs.
Hope that helps!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With