vote up 3 vote down star
2

I'm using matplotlib to generate a (vertical) barchart. The problem is my labels are rather long. Is there any way to display them vertically, either in the bar or above it or below it?

Note: The best answer will get a 500 bounty.

flag

3 Answers

vote up 2 vote down check

Do you mean something like this:

>>> from matplotlib import *
>>> plot(xrange(10))
>>> yticks(xrange(10), rotation='vertical')

?

In general, to show any text in matplotlib with a vertical orientation, you can add the keyword rotation='vertical'.

For further options, you can look at help(matplotlib.pyplot.text)

The yticks function plots the ticks on the y axis; I am not sure whether you originally meant this or the ylabel function, but the procedure is alwasy the same, you have to add rotation='vertical'

Maybe you can also find useful the options 'verticalalignment' and 'horizontalalignment', which allows you to define how to align the text with respect to the ticks or the other elements.

link|flag
Note that I'm not using plot(); but bar(). But rotation='vertical' seems to be the key. However, this still doesn't draw the ticks in the bars. – phihag Aug 3 at 11:13
Do you mean the ticks in the xy axis? Have a look at the grid function. For example grid(ls='', marker='v') . grid() controls the plotting of the grid on the xy axis; with the marker option you define the stile for the tick markers, and with ls='' you get an invisible grid. – dalloliogm Aug 3 at 12:07
@dalloliogm sounds good – phihag Aug 3 at 16:40
Unless a better answer comes, you'll get the bounty, promise. I'll be without internet access until 2009-8-9 though :( – phihag Aug 3 at 18:22
Thanks!! However, maybe 500 points is too much for such an answer, it wasn't so difficult. So if you, you can save the points for another time :) – dalloliogm Aug 4 at 18:27
vote up 0 vote down

My solution doesn't use matplotlib. However, I know gnuplot can do what you are asking.

link|flag
vote up 0 vote down

I would suggest looking at the matplotlib gallery. At least two of the examples seem to be relevant:

  • text_rotation.py for understanding how text layout works
  • barchart_demo2.py, an example of a bar chart with somewhat more complicated layout than the most basic example.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.