Mini-Project - DE with Python and Pandas - Google Play Store App Performance Analysis #43
akash-coded
started this conversation in
Tasks
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
This is a continued project with 10 business-oriented questions that can be answered using pandas and core Python techniques. We'll emphasize data ingestion, transformation, and business logic application. Continued from #45
Project: Google Play Store App Performance Analysis
Dataset: https://github.com/schlende/practical-pandas-projects/blob/master/datasets/google-play-store-11-2018.csv
Hint: Use groupby, sum, and sort_values functions.
Hint: Use groupby with multiple columns and unstack.
Hint: Use corr() function and a custom function with apply.
Hint: Create a new column for the ratio and use nlargest.
Hint: Use boolean indexing and mean().
Hint: Use describe() function with groupby.
Hint: Extract day of week from 'released' column and use value_counts().
Hint: Use groupby and apply with a custom function.
Hint: Use boolean indexing, groupby, and agg functions.
Hint: Use a custom function to estimate revenue and sort_values.
These questions cover various aspects of data analysis using pandas and core Python. Here are some additional tips for working on this project:
Data Ingestion:
Data Transformation:
Grouping and Aggregation:
Filtering and Sorting:
Function Application:
Performance Considerations:
Error Handling:
Remember to document your code and explain your reasoning for each analysis step. This will make your work more understandable and maintainable.
By working through these questions, you'll gain practical experience in data manipulation, transformation, and analysis using pandas and Python, which are essential skills in data engineering.
Beta Was this translation helpful? Give feedback.
All reactions