Best Books Of The Decade: 2020's
Exploring the Top-Rated Books of the 2020s: Reviews, Ratings from Goodreads
@kaggle.valakhorasani_best_books_of_the_decade_2020s
Exploring the Top-Rated Books of the 2020s: Reviews, Ratings from Goodreads
@kaggle.valakhorasani_best_books_of_the_decade_2020s
This dataset contains two parts:
1. **Best Books of the Decade: 2020s**
2. **User Reviews**
Best Books of the Decade: 2020s
A collection of the top 2,327 books from the 2020s based on user ratings and popularity. Columns include:
User Reviews
A dataset of 600,000 user-generated reviews for these books, useful for collaborative filtering and recommendation systems. Columns include:
This dataset is ideal for exploring book popularity trends, user preferences, and building recommendation systems.
CREATE TABLE books_of_the_decade (
"index" BIGINT,
"book_name" VARCHAR,
"author" VARCHAR,
"rating" VARCHAR,
"number_of_votes" VARCHAR,
"score" BIGINT
);CREATE TABLE user_reviews_dataset (
"userid" BIGINT,
"bookindex" BIGINT,
"score" BIGINT
);Anyone who has the link will be able to view this.