Skip to content

Instantly share code, notes, and snippets.

@liannewriting
Created August 19, 2021 13:36
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 liannewriting/4bad647c628ac0d0094e61786b451a2e to your computer and use it in GitHub Desktop.
Save liannewriting/4bad647c628ac0d0094e61786b451a2e to your computer and use it in GitHub Desktop.
python data visualization libraries list
import matplotlib.pyplot as plt
plt.plot(tips['total_bill'], tips['tip'], 'o')
plt.xlabel('total_bill')
plt.ylabel('tip')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment