Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created January 6, 2021 05:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/b9e03df70fe73cf6d73bc12ee04abfc3 to your computer and use it in GitHub Desktop.
Save amankharwal/b9e03df70fe73cf6d73bc12ee04abfc3 to your computer and use it in GitHub Desktop.
import pandas as pd
from pandas import DataFrame
from pandas.plotting import scatter_matrix
import matplotlib.pyplot as plt
from matplotlib import rcParams
import plotly.graph_objects as go
import plotly.express as px
from plotly.colors import n_colors
import numpy as np
import seaborn as sns
import pandas_profiling
%matplotlib inline
from matplotlib import rc
import scipy.stats
from scipy.stats.mstats import winsorize
life_expectancy = pd.read_csv("Life Expectancy Data.csv") #reading the file
life_expectancy.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment