Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b86260a

Browse files
author
Vlas Sokolov
committed
fix failing sphinx docs
1 parent c3fa542 commit b86260a

1 file changed

Lines changed: 22 additions & 2 deletions

File tree

lib/mpl_toolkits/mplot3d/axes3d.py

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2789,6 +2789,7 @@ def errorbar(self, x, y, z, zerr=None, yerr=None, xerr=None, fmt='',
27892789
27902790
xerr, yerr, zerr : scalar or array-like, optional
27912791
The errorbar sizes:
2792+
27922793
- scalar: Symmetric +/- values for all data points.
27932794
- shape(N,): Symmetric +/-values for each data point.
27942795
- shape(2, N): Separate - and + values for each bar. First row
@@ -2844,8 +2845,27 @@ def errorbar(self, x, y, z, zerr=None, yerr=None, xerr=None, fmt='',
28442845
Used to avoid overlapping error bars when two series share x-axis
28452846
values.
28462847
2847-
Additional keyword arguments for styling errorbar lines are passed to
2848-
`~mpl_toolkits.mplot3d.art3d.Line3DCollection`
2848+
Returns
2849+
-------
2850+
errlines : list
2851+
List of `~mpl_toolkits.mplot3d.art3d.Line3DCollection` instances
2852+
each containing an errorbar line.
2853+
caplines : list
2854+
List of `~mpl_toolkits.mplot3d.art3d.Line3D` instances each
2855+
containing a capline object.
2856+
limmarks : list
2857+
List of `~mpl_toolkits.mplot3d.art3d.Line3D` instances each
2858+
containing a marker with an upper or lower limit.
2859+
2860+
Other Parameters
2861+
----------------
2862+
**kwargs
2863+
All other keyword arguments for styling errorbar lines are passed
2864+
`~mpl_toolkits.mplot3d.art3d.Line3DCollection`.
2865+
2866+
Examples
2867+
--------
2868+
.. plot:: gallery/mplot3d/errorbar3d.py
28492869
"""
28502870
had_data = self.has_data()
28512871

0 commit comments

Comments
 (0)