6
votes
How do you change the size of figures drawn with matplotlib?
help(figure) tells you the call signature:
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')
So figure(figsize=(1,1)) creates an …
2
votes
Python plotting: How can I make matplotlib.pyplot stop forcing the style of my markers?
For nice-looking vectorized output, don't use the '.' marker style. Use e.g. 'o' (circle) or 's' (square) (see help(plot) for the options) and se …
1
vote
Multiple overlapping plots with independent scaling in Matplotlib
There's no direct support for this, but here's some code from a mailing list posting that illlustrate …
0
votes
Barchart sizing of text & barwidth with matplotlib - python
Take a look at subplots_adjust, or just use …
0
votes
Matplotlib Build Problem: Error C1083: Cannot open include file: ‘ft2build.h’
Have you installed freetype properly? If you have, there should be a file named ft2build.h somewhere under the installation directory, and the directory where that file is found is the …
5
votes
barchart (o plot) 3D in python
For some time now, matplotlib had no 3D support, but it has been added back recently. You wil …
3
votes
barchart (o plot) 3D in python
One more possibility is Gnuplot, which can draw some kind of pseudo 3D bar charts, and …
3
votes
Matplotlib: Legend not displayed properly
It would help to have a self-contained example, possibly with made-up data, so people can run it right away. Here's a self-contained example modified from what you posted that works fine for me in …
1
vote
Controling bars width in matplotlib with per-month data
Just use the width keyword argument:
bar(x, y, width=30)
Or, since different months have different numbers of days, to make it look good you can use a …
0
votes
Barchart with vertical labels in python/matplotlib
I would suggest looking at the matplotlib gallery. At least two of the examples seem to be relevant:
…
1
vote
0
votes
Python leaking memory while using PyQt and matplotlib
The pyplot interface is meant for easy interactive use, but for embedding in an application the object-oriented API is better. For example, pyplot keeps track of all figures you have created. Your …
1
vote
Show/hide a plot’s legend.
Here's something you can try on the command line:
plot([3,1,4,1],label='foo')
lgd=legend()
# when you want it to be invisible:
lgd.set_visible(False)
draw()
# when you want it to …
0
votes
Giving graphs a subtitle in matplotlib
I don't think there is anything built-in, but you can do it by leaving more space above your axes and using …
1
vote
Octave colorbar and units
The matplotlib answer (using pylab) is
imshow(random((20,20)))
colorbar(format='%.2f V/nm')
In Octave it seems that the following works (but I'm no Octave expert s …
