Skip to content

Instantly share code, notes, and snippets.

@darioappsilon
Created March 15, 2022 13:22
```{python}
import matplotlib.pyplot as plt
plt.figure(figsize=(12, 6))
plt.scatter(mtcars['wt'], mtcars['mpg'], color='#000', s=10)
plt.title('Mtcars - WT vs. MPG')
plt.show()
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment