Learn practical skills, build real-world projects, and advance your career
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import pylab as pl
import os
import warnings
import seaborn as sns
import sklearn
%matplotlib inline
df = pd.read_csv('TCS.NS.csv')
df.head()
df.describe()
plt.figure(figsize=(20,8))
plt.plot(df['Date'],df['Open'])
plt.plot(df['Date'],df['Close'])
plt.show()
Notebook Image