7f320b148ec9aecb1c3ef91645b3b57e67c92264,examples/subplots_axes_and_figures/axes_demo.py,,,#,12
Before Change
// this is an inset axes over the main axes
a = plt.axes([.65, .6, .2, .2], facecolor="k")
n, bins, patches = plt.hist(s, 400, density=True)
plt.title("Probability")
plt.xticks([])
plt.yticks([])
After Change
x = np.random.randn(len(t))
s = np.convolve(x, r)[:len(x)] * dt // colored noise
fig , main_ax = plt.subplots()
main_ax.plot(t, s)
main_ax.set_xlim(0, 1)
main_ax.set_ylim(1.1 * np.min(s), 2 * np.max(s))
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 2
Instances Project Name: matplotlib/matplotlib
Commit Name: 7f320b148ec9aecb1c3ef91645b3b57e67c92264
Time: 2019-07-30
Author: mbussonnier@ucmerced.edu
File Name: examples/subplots_axes_and_figures/axes_demo.py
Class Name:
Method Name:
Project Name: arviz-devs/arviz
Commit Name: 74b332aa2fb55c2026b32f19dec7d28cef4356ed
Time: 2020-08-05
Author: tomicapretto@gmail.com
File Name: arviz/plots/backends/matplotlib/posteriorplot.py
Class Name:
Method Name: _plot_posterior_op
Project Name: rtavenar/tslearn
Commit Name: 58196a3a29899140a54c8e81bd4a57adefdd793d
Time: 2020-06-12
Author: romain.tavenard@univ-rennes2.fr
File Name: tslearn/docs/examples/classification/plot_early_classification.py
Class Name:
Method Name:
Project Name: arviz-devs/arviz
Commit Name: 73f90a2a1c6a893886909a7e8012718efc0b18e9
Time: 2020-11-06
Author: aloctavodia@gmail.com
File Name: arviz/plots/backends/matplotlib/posteriorplot.py
Class Name:
Method Name: _plot_posterior_op