A free job simulation on Forage. All credits go to Accenture. Check out the simulation here: https://www.theforage.com/simulations/accenture-nam/data-analytics-mmlb
Data analysis and visualization were performed using a Kaggle notebook to streamline and enhance the analysis process. You can find the notebook here: https://www.kaggle.com/code/emmawu155/accenture-navigating-numbers
- Completed a simulation focused on advising a hypothetical social media client as a Data Analyst at Accenture.
- Cleaned, modeled, and analyzed 7 datasets to uncover insights into content trends to inform strategic decisions.
- Prepared a PowerPoint deck and video presentation to communicate key insights for the client and internal stakeholders.
- Data analysis and visualization were performed using a Kaggle notebook to streamline and enhance the analysis process.
This project analyzes and visualizes data related to various categories based on user reactions. The goal is to clean, process, and visualize the data to identify trends and insights, such as the top-performing categories and the distribution of scores.
The project involves:
- Data Cleaning: Processing raw data to prepare it for analysis.
- Data Merging: Combining multiple datasets to create a comprehensive view.
- Data Aggregation: Summarizing data to determine key insights.
- Visualization: Creating charts to represent data in a meaningful way.
- Reactions.csv: Contains user reactions with columns
Content ID,User ID,Reaction Type, andDatetime. - ReactionTypes.csv: Contains details about reaction types with columns
Type,Sentiment, andScore. - Content.csv: Contains content details with columns
Content ID,User ID,Content Type,Category, andURL.
-
Renaming Columns:
- Renamed 'Type' to 'Reaction Type' in
Reactionsand 'Type' to 'Content Type' inContent.
- Renamed 'Type' to 'Reaction Type' in
-
Cleaning Data:
- Removed quotations from the 'Category' column in
Content. - Dropped rows with missing 'Reaction Type' values in
Reactions. - Removed 'User ID' and 'URL' columns from
ContentandReactions.
- Removed quotations from the 'Category' column in
-
Merging Datasets:
- Merged
ReactionswithContenton 'Content ID'. - Merged the resulting dataset with
ReactionTypeson 'Reaction Type'.
- Merged
-
Aggregation and Visualization:
- Aggregated scores for each category.
- Grouped the lowest 10 categories under the label 'Others'.
- Created a pie chart to visualize the proportion of scores for each category.
-
Number of Unique Categories:
- Total count of distinct categories.
-
Reactions to the Most Popular Category:
- Number of reactions associated with the most popular category.
-
Month with the Most Posts:
- Identified the month with the highest number of posts.
- Description: Displays the proportion of scores for each category, with the lowest 10 categories combined under 'Others'.
pandasmatplotlib
- This project was part of a free job project simulation offered by Accenture on Forage.
- Data analysis and visualization were performed using a Kaggle notebook to streamline and enhance the analysis process.