03b04a9921afe6953d460c49e39067326e8a73a8,tex/figures/autodiff.py,,,#,13
Before Change
// Plot it
fig = pl.figure(figsize=(4, 8))
fig.subplots_adjust(hspace=0, bottom=0.05, top=0.95)
ax = pl.subplot2grid((20, 1), (0, 0), rowspan=5)
ax.plot(time, system.flux, color="C0")
ax.set_yticks([])
ax.set_xticks([])
ax.set_ylabel(r"$\mathrm{Flux}$", fontsize=16, labelpad=7)
[i.set_linewidth(0.) for i in ax.spines.values()]
// Now plot selected gradients
After Change
system.compute(time)
// Plot it
ax = pl.subplot2grid((20, 2), (0, i), rowspan=5)
ax.set_title(titles[i])
ax.plot(time, system.flux, color="C0")
ax.set_yticks([])
ax.set_xticks([])
ax.set_ylabel("Flux", fontsize=16, labelpad=7)
[i.set_linewidth(0.) for i in ax.spines.values()]
// Now plot selected gradients
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: rodluger/starry
Commit Name: 03b04a9921afe6953d460c49e39067326e8a73a8
Time: 2018-05-10
Author: rodluger@gmail.com
File Name: tex/figures/autodiff.py
Class Name:
Method Name:
Project Name: matplotlib/matplotlib
Commit Name: f701967d1c4ecd7f679dd9e9e09388c8960e8fcf
Time: 2018-02-17
Author: quantum.analyst@gmail.com
File Name: examples/showcase/xkcd.py
Class Name:
Method Name:
Project Name: matplotlib/matplotlib
Commit Name: 8cd9a3b5bbaa0cdb3608d704c2760186f3581946
Time: 2018-02-15
Author: derek.tropf@gmail.com
File Name: examples/showcase/xkcd.py
Class Name:
Method Name: