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

Google Playstore Data Analysis Project.

This is my exploratory data analysis project where I clean, process and visualize a google playstore csv file from kaggle.com.

This is a data analysis project on download on the google playstore. The csv file that I use in this project comes from https://www.kaggle.com/lava18/google-play-store-apps. This project was made possible with the zero to pandas data analysis course.(http://zerotopandas.com ) course and without it, this project would have never gotten anywhere and would have never existed. If you want to learn data analysis, you should click on the zero to pandas course link above and try out the course. It is free so you are losing nothing!

If you want to run this file yourself, please make sure to download and upload the csv file into jupyter notebook, or it will not work. Also keep in mind that there will be some errors in the data cleaning section, that is normal. I have included some errors and ways to fix them as to showcase some of the things I learned in the during this project.

# !pip install jovian --upgrade -q
import jovian
import matplotlib.pyplot as plt
import pandas as pd
import seaborn as sns
import numpy as np

Data Preparation and Cleaning

Clean up the data with the help of pandas and numpy.

Playstore = pd.read_csv('googleplaystore.csv')
Playstore.head()