Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 25, 2020 11:32
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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