EmJames

Search

Search IconIcon to open search

[Notes] How to Write a Good Scientific Paper: Figures, Part 2

Last updated Sep 16, 2019

Assuming that the final graph will fit within a single column in a two-column-per-page format.
Examples use Matplotlib

1
fig, ax1 = plt.subplots(figsize=(6.75, 5))
1
2
plt.rcParams['font.size'] = 14
plt.rcParams['font.size'] = 12 # works too
1
plt.rcParams["axes.grid"] = False
1
2
3
plt.rcParams['axes.edgecolor'] = 'black'
plt.rcParams['axes.linewidth'] = 1
plt.rcParams['axes.linewidth'] = 0.5 # works too

# References

Source
Source 2