import numpy as np
import pandas as pd
import [Link] as plt
import seaborn as sns
from seaborn import load_dataset
from [Link] import files
uploaded=[Link]()
temp=pd.read_csv("[Link]")
print(temp)
Choose Files No file chosen Upload widget is only available when the cell has been executed in the current
browser session. Please rerun this cell to enable.
Saving program2 csv to program2 (1) csv
[Link](data=temp)
[Link]("X-axis")
[Link]()
a=[Link][:,"Sales"]
month=['1','2','3','4','5','6','7','8','9']
fig=[Link](figsize=(10,10))
[Link](a[:9], labels = month)
[Link]()
x=list(temp['Sales'])
y=list(temp['Profit'])
[Link](x,y)
[Link]()
[Link](temp[1:23])
[Link]()
a=[Link][:,'Sales']
x=list(a[:9])
y=range(9)
[Link]("X-axis")
[Link]("Y-axis")
[Link]('temp')
[Link]('The Sales For first 25 days')
[Link](y,x)
[Link]()