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

Unemployment Rate Exploratory of US

This dataset used represents the Local Area Unemployment Statistics from 1990-2016, broken down by state and month. This dataset is taken from kaggle which has a huge amount of dataset available. I am going to perform exploratory of Unemployment Rate data analysis.This project is part of my course offered by Jovian.ml on Data Analysis using python libraries like pandas , matplotlib and seaborn.

import pandas as pd
import numpy as np
unemployment_df = pd.read_csv("output.csv")
unemployment_df
project_name="Unemployment"