Course Project Google Play Store Dataset
INTRODUCTION:
The objective of this project is to deliver insights to understand customer demands better and thus help developers to popularize the product. The dataset is chosen from Kaggle. It is of 10k Play Store apps for analyzing the Android market. It consists of in total of 10841 rows and 13 columns.
!pip install numpy pandas seaborn matplotlib -q
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline
!pip install jovian opendatasets --upgrade --quiet
dataset_url = 'https://www.kaggle.com/lava18/google-play-store-apps'
Ritika Singh7 months ago