errLinePlot(data,
errtype='ste',
curves=None,
linestyle='--',
fmt='o')
| source code
|
Make a line plot with errorbars on the data points.
- Parameters:
data , sequence , of , sequences - First axis separates samples and second axis will appear as
x-axis in the plot.
errtype , 'ste' , | , 'std' -
- Type of error value to be computed per datapoint.
- 'ste': standard error of the mean
'std': standard deviation
curves , None , | , ndarrayb - Each row of the array is plotted as an additional curve. The
curves might have a different sampling frequency (i.e. number of
samples) than the data array, as it will be scaled (along
x-axis) to the range of the data points.
linestyle , str - matplotlib linestyle argument. Applied to either the additional
curve or a the line connecting the datapoints. Set to 'None' to
disable the line completely.
fmt , str - matplotlib plot style argument to be applied to the data points
and errorbars.
|