Couple of styles for your graphs.
I have stored sample data in a csv file named df1 in the same folder where I am running this program. Run this program using Jupyter Notebook.
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline
df1 = pd.read_csv('df1', index_col=0)
df1.head()
I have stored sample data in a csv file named df1 in the same folder where I am running this program. Run this program using Jupyter Notebook.
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline
df1 = pd.read_csv('df1', index_col=0)
df1.head()
Comments
Post a Comment