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

Automobile Insurance Data Exploration

Nico Wright

Final Project for Course:
Data Analysis with Python: Zero to Pandas.

Will be using python, pandas, numpy, matplotlib and seaborn to analyze and visualize data about automobile insurance claims taken fron kaggle
https://www.kaggle.com/aashishjhamtani/automobile-insurance


Data Preparation and Cleaning

We will import the necessary modules for analysis and understand the shape and content of our data

import pandas as pd
import numpy as np
df = pd.read_csv('insurance_claims.csv')