Skip to content

Instantly share code, notes, and snippets.

@pyPRO2019
Created March 26, 2020 16:07
Show Gist options
  • Select an option

  • Save pyPRO2019/8760c134b8ddd0bd23432a5d5783cdc4 to your computer and use it in GitHub Desktop.

Select an option

Save pyPRO2019/8760c134b8ddd0bd23432a5d5783cdc4 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
## Importing the Packages
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
import warnings
warnings.filterwarnings('ignore')
#importing plotly modules for interactive charts
import chart_studio.plotly.plotly as py
import plotly.offline as pyoff
import plotly.graph_objs as go
#setting up the graphycal environment
#pyoff.init_notebook_mode()
%matplotlib inline
sns.set_style('whitegrid')
df=pd.read_csv('Students Data.csv')
df.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment