Skip to content

Instantly share code, notes, and snippets.

@Aditya1001001
Created May 16, 2021 09:45
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 Aditya1001001/c7abda81303de4589a41314642fa7dce to your computer and use it in GitHub Desktop.
Save Aditya1001001/c7abda81303de4589a41314642fa7dce to your computer and use it in GitHub Desktop.
import seaborn as sns
sns.set(rc={'figure.figsize':(12,8)})
df = sns.load_dataset('iris')
sns.regplot(x = "sepal_length",
y = "petal_length",
data = df,
color="r")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment