/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/mpl_examples/lines_bars_and_markers/ |
H A D | fill_betweenx_demo.py | 19 ax1.fill_betweenx(y, 0, x1) 22 ax2.fill_betweenx(y, x1, 1) 26 ax3.fill_betweenx(y, x1, x2) 36 ax.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green') 37 ax.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red') 43 ax1.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green') 44 ax1.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red')
|
/dports/math/py-matplotlib/matplotlib-3.4.3/examples/lines_bars_and_markers/ |
H A D | fill_betweenx_demo.py | 19 ax1.fill_betweenx(y, 0, x1) 22 ax2.fill_betweenx(y, x1, 1) 26 ax3.fill_betweenx(y, x1, x2) 36 ax.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green') 37 ax.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red') 43 ax1.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green') 44 ax1.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red')
|
H A D | filled_step.py | 70 return ax.fill_betweenx(edges, values, bottoms,
|
/dports/math/py-matplotlib2/matplotlib-2.2.4/examples/lines_bars_and_markers/ |
H A D | fill_betweenx_demo.py | 19 ax1.fill_betweenx(y, 0, x1) 22 ax2.fill_betweenx(y, x1, 1) 26 ax3.fill_betweenx(y, x1, x2) 36 ax.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green') 37 ax.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red') 43 ax1.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green') 44 ax1.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red')
|
/dports/science/py-scikit-learn/scikit-learn-1.0.2/examples/cluster/ |
H A D | plot_kmeans_silhouette_analysis.py | 101 ax1.fill_betweenx(
|
/dports/math/py-arviz/arviz-0.11.4/arviz/plots/backends/matplotlib/ |
H A D | violinplot.py | 117 ax.fill_betweenx(x, density, alpha=shade, lw=0, **shade_kwargs)
|
H A D | kdeplot.py | 119 fill_func = ax.fill_betweenx
|
/dports/math/py-matplotlib2/matplotlib-2.2.4/examples/api/ |
H A D | filled_step.py | 72 return ax.fill_betweenx(edges, values, bottoms,
|
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/mpl_examples/api/ |
H A D | filled_step.py | 72 return ax.fill_betweenx(edges, values, bottoms,
|
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/graphics/ |
H A D | boxplots.py | 196 ax.fill_betweenx(xvals, envelope_l, envelope_r,
|
/dports/science/py-gpaw/gpaw-21.6.0/gpaw/lcaotddft/ |
H A D | tcm.py | 29 fill_between = ax.fill_betweenx
|
/dports/math/py-matplotlib/matplotlib-3.4.3/doc/api/ |
H A D | axes_api.rst | 65 Axes.fill_betweenx
|
/dports/math/py-matplotlib2/matplotlib-2.2.4/doc/api/ |
H A D | axes_api.rst | 39 Axes.fill_betweenx
|
/dports/math/py-matplotlib/matplotlib-3.4.3/doc/api/prev_api_changes/api_changes_3.4.0/ |
H A D | removals.rst | 136 `.axes.Axes.fill_betweenx` is no longer accepted and non-matching sizes now
|
/dports/math/py-matplotlib/matplotlib-3.4.3/lib/matplotlib/ |
H A D | pyplot.py | 2812 @_copy_docstring_and_deprecators(Axes.fill_betweenx) 2813 def fill_betweenx( function 2816 return gca().fill_betweenx(
|
/dports/astro/py-metpy/MetPy-1.1.0/src/metpy/plots/ |
H A D | skewt.py | 671 return self.ax.fill_betweenx(*arrs, **fill_args)
|
/dports/math/py-matplotlib2/matplotlib-2.2.4/doc/users/prev_whats_new/ |
H A D | whats_new_2.1.0.rst | 487 Interpolation in ``fill_betweenx`` 491 :func:`~matplotlib.axes.Axes.fill_betweenx`. This allows a user to
|
/dports/math/py-matplotlib/matplotlib-3.4.3/doc/users/prev_whats_new/ |
H A D | whats_new_2.1.0.rst | 487 Interpolation in ``fill_betweenx`` 491 :func:`~matplotlib.axes.Axes.fill_betweenx`. This allows a user to
|
/dports/math/py-matplotlib/matplotlib-3.4.3/doc/api/prev_api_changes/api_changes_3.2.0/ |
H A D | deprecations.rst | 140 ``fill_betweenx()`` is deprecated. While the documentation already states that
|
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/matplotlib/ |
H A D | pyplot.py | 3066 @_autogen_docstring(Axes.fill_betweenx) 3067 def fill_betweenx(y, x1, x2=0, where=None, step=None, interpolate=False, function 3080 ret = ax.fill_betweenx(y, x1, x2=x2, where=where, step=step,
|
/dports/math/py-matplotlib/matplotlib-3.4.3/lib/matplotlib/axes/ |
H A D | _axes.py | 5398 def fill_betweenx(self, y, x1, x2=0, where=None, member in Axes 5405 fill_betweenx.__doc__ = _fill_between_x_or_y.__doc__.format( 5408 fill_betweenx = _preprocess_data( variable in Axes 5409 docstring.dedent_interpd(fill_betweenx), 8162 fill = self.fill_betweenx
|
/dports/science/py-abipy/abipy-0.9.0/abipy/electrons/ |
H A D | fatbands.py | 1044 fill = ax.fill_between if not exchange_xy else ax.fill_betweenx 1200 fill = ax.fill_between if not exchange_xy else ax.fill_betweenx
|
/dports/math/py-seaborn/seaborn-0.11.0/seaborn/ |
H A D | distributions.py | 607 artist = ax.fill_betweenx(x, b, y, step=step, **artist_kws) 1003 artist = ax.fill_betweenx(
|
/dports/devel/py-memory-profiler/memory_profiler-0.58.0/ |
H A D | mprof.py | 715 rect = ax.fill_betweenx((y0, y1), x0, x1, color=color, alpha=0.5, linewidth=1)
|
/dports/math/py-matplotlib2/matplotlib-2.2.4/doc/users/ |
H A D | dflt_style_changes.rst | 508 ``fill_between`` and ``fill_betweenx`` 512 `~matplotlib.axes.Axes.fill_betweenx` both follow the patch color
|