Exploring Uber’s Customer Feedback
Sentiment Analysis of 12,000+ Google Play Reviews: Unveiling Trends and Insights
@kaggle.zeesolver_uber_customer_reviews_dataset_2024
Sentiment Analysis of 12,000+ Google Play Reviews: Unveiling Trends and Insights
@kaggle.zeesolver_uber_customer_reviews_dataset_2024
Title: Exploring Uber’s Customer Feedback
Subtitle: Sentiment Analysis of 12,000+ Google Play Reviews: Unveiling Trends and Insights
The dataset contains detailed review information, including unique reviewer usernames (over 12,000 entries), their profile pictures, and the content of their feedback, categorized as "good" (8%), "nice" (3%), and "other" (89%). Reviews are rated on a scale, with "ThumbsUp" indicating the count of likes (e.g., 239). Reviews are timestamped with creation dates, primarily "4.554.10001" (27%) and "4.555.10003" (19%), while other versions make up 54%. Each review includes the number of replies and the timestamp of the latest reply. Additionally, the app version being reviewed follows a similar distribution pattern, with key versions dominating a minority of the data.
CREATE TABLE uber_reviews_without_reviewid (
"username" VARCHAR,
"userimage" VARCHAR,
"content" VARCHAR,
"score" BIGINT,
"thumbsupcount" BIGINT,
"reviewcreatedversion" VARCHAR,
"at" TIMESTAMP,
"replycontent" VARCHAR,
"repliedat" TIMESTAMP,
"appversion" VARCHAR
);
Anyone who has the link will be able to view this.