This file contains 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
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