Skip to content

Instantly share code, notes, and snippets.

@luiarthur
Created September 22, 2022 22:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luiarthur/e5cdbce47fa66ce7dbfbec90f7424e5a to your computer and use it in GitHub Desktop.
Save luiarthur/e5cdbce47fa66ce7dbfbec90f7424e5a to your computer and use it in GitHub Desktop.
Seaborn plots
import numpy as np
import matplotlib.pyplot as plt
with sns.axes_style("darkgrid"), sns.plotting_context("talk", font_scale=1.2):
plt.plot(np.random.randn(100))
plt.show()
@luiarthur
Copy link
Author

Result:

Figure_1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment