Anime Dataset With Reviews - MyAnimeList
Anime Dataset from myanimelist.net (animes, profiles, reviews) as 2020
@kaggle.marlesson_myanimelist_dataset_animes_profiles_reviews
Anime Dataset from myanimelist.net (animes, profiles, reviews) as 2020
@kaggle.marlesson_myanimelist_dataset_animes_profiles_reviews
This dataset contains informations about Anime (16k), Reviews (130k) and Profiles (47k) crawled from https://myanimelist.net/ at 05/01/20.
The crawler program is opened on https://github.com/marlesson/scrapy_myanimelist
There are others similar datasets:
The dataset contains 3 files:
animes.csv contains list of anime, with title, title synonyms, genre, duration, rank, populatiry, score, airing date, episodes and many other important data about individual anime providing sufficient information about trends in time about important aspects of anime. Rank is in float format in csv, but it contains only integer value. This is due to NaN values and their representation in pandas.
profiles.csv contains information about users who watch anime, namely username, birth date, gender, and favorite animes list.
reviews.csv contains information about reviews users x animes, with text review and scores.
This dataset has been crawled from MyAnimeList.net by myself. If you use this dataset in your research, please cite this page.
This dataset may be used in recomender system, sentiment analysis or other natural language processing.
We can analysis the ratings to see Anime trend and how the genre can be a trend.
CREATE TABLE animes (
"uid" BIGINT,
"title" VARCHAR,
"synopsis" VARCHAR,
"genre" VARCHAR,
"aired" VARCHAR,
"episodes" DOUBLE,
"members" BIGINT,
"popularity" BIGINT,
"ranked" DOUBLE,
"score" DOUBLE,
"img_url" VARCHAR,
"link" VARCHAR
);CREATE TABLE profiles (
"profile" VARCHAR,
"gender" VARCHAR,
"birthday" VARCHAR,
"favorites_anime" VARCHAR,
"link" VARCHAR
);CREATE TABLE reviews (
"uid" BIGINT,
"profile" VARCHAR,
"anime_uid" BIGINT,
"text" VARCHAR,
"score" BIGINT,
"scores" VARCHAR,
"link" VARCHAR
);Anyone who has the link will be able to view this.