Google Play Reviews
10k of Google Play Reviews' entries
@kaggle.naomilago_gpreviews
10k of Google Play Reviews' entries
@kaggle.naomilago_gpreviews
This dataset is made inspired by a Sentiment Analysis task, where the rating may be converted to two or three categories (e.g. Positive, Negative and Neutral)
The features are the followings:
reviewId: Unique ID for each comment
userName: User name used within the platform
userImage: URL for the users' profile photo
content: The review text
score: Rating between 1 and 5
thumbsUpCount: Amount of likes for the comments
reviewCreatedVersion: App version that have been rated
at: Timestamp for the review creation date and time
replyContent: The review reply text
repliedAt: Timestamp for the review creation date and time
CREATE TABLE reviews (
"reviewid" VARCHAR,
"username" VARCHAR,
"userimage" VARCHAR,
"content" VARCHAR,
"score" BIGINT,
"thumbsupcount" BIGINT,
"reviewcreatedversion" VARCHAR,
"at" TIMESTAMP,
"replycontent" VARCHAR,
"repliedat" TIMESTAMP,
"appversion" VARCHAR,
"sortorder" VARCHAR,
"appid" VARCHAR
);Anyone who has the link will be able to view this.