Re: [Matplotlib-users] bar plot errorbars
It seems that this is not possible with bar or barh. I guess the best way is to use a separate errorbar comannd import matplotlib.pyplot as plt import numpy as np val = 3+10*np.random.rand(5)# the bar lengths pos = np.arange(5)+.5# the bar centers on the y axis yerr = np.random.rand(5) p
[Matplotlib-users] bar plot errorbars
Hi, Is there a way to have errorbars in a bar plot going in just one direction? E. g. like that - | +-+ | | instead of - | +-+ | | | - ? TIA Christian -- Come build with us! The BlackBer