Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 25, 2020 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save computer-tutor/1d69519db4369399eafaab112090aded to your computer and use it in GitHub Desktop.
Save computer-tutor/1d69519db4369399eafaab112090aded to your computer and use it in GitHub Desktop.
import pandas as pd
import matplotlib.pyplot as plt
df= pd.read_csv("/App.csv")
print(df)
x=[75,120,190,245,550,55,175,75,140]
plt.plot(x)
plt.xlabel('Apps')
plt.ylabel("Prices")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment