Created
March 26, 2020 16:07
-
-
Save pyPRO2019/8760c134b8ddd0bd23432a5d5783cdc4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## 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