Learn practical skills, build real-world projects, and advance your career

Gapminder Dataset Study

First we are going to download the required libraries for this study

# Importing neccessary libraries
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns

The gapminder dataset is a dataset with data from multiple countries, data including life_expecancy, population and gdp. This dataset was created by a non-profit organization known as Gapminder, their aim is to spread data-driven data facts about the countries ther.Now we are going to import the dataset, I have saved it as a .csv file in my laptop so I am going to use the pd.read_csv() command

gapminder = pd.read_csv("gapminder.csv")