Manga 2024 Details With Review
With over 68k manga.
@kaggle.ddmasterdon_manga_2023_details_with_review
With over 68k manga.
@kaggle.ddmasterdon_manga_2023_details_with_review
Our comprehensive Manga Dataset, sourced from MyAnimeList (MAL), includes detailed information on over 24,000 manga titles. This dataset has been meticulously cleaned to ensure accuracy and consistency, making it an invaluable resource for researchers, analysts, and enthusiasts alike. Key features of the dataset include:
This dataset is ideal for a wide range of applications, including but not limited to:
The dataset is available in a CSV file format, with each row representing a unique anime and each column representing a specific attribute of the anime. The structured format allows for easy integration with data analysis tools and software.
This dataset is ideal for exploring trends and patterns in manga publishing, analyzing user preferences and sentiments, and conducting various forms of data analysis and machine learning applications. Whether you're looking to understand the evolution of manga over time or identify key factors that contribute to a manga's popularity, this dataset offers a robust foundation for your research and analysis.
CREATE TABLE manga_cleaned (
"synopsis" VARCHAR,
"background" VARCHAR,
"serialization" VARCHAR,
"authors" VARCHAR,
"pictures" VARCHAR,
"status" VARCHAR,
"updated_at" TIMESTAMP,
"popularity" BIGINT,
"related_manga" VARCHAR,
"num_chapters" BIGINT,
"media_type" VARCHAR,
"nsfw" VARCHAR,
"main_picture" VARCHAR,
"title" VARCHAR,
"end_date" VARCHAR,
"genres" VARCHAR,
"num_scoring_users" BIGINT,
"id" BIGINT,
"mean" DOUBLE,
"num_volumes" BIGINT,
"rank" DOUBLE,
"start_date" VARCHAR,
"num_list_users" BIGINT,
"synonyms" VARCHAR,
"en" VARCHAR,
"ja" VARCHAR
);CREATE TABLE manga_ratinga (
"user" VARCHAR,
"manga_id" BIGINT,
"manga_title" VARCHAR,
"score" BIGINT
);CREATE TABLE manga_raw (
"id" BIGINT,
"title" VARCHAR,
"main_picture_medium" VARCHAR,
"main_picture_large" VARCHAR,
"alternative_titles_synonyms" VARCHAR,
"alternative_titles_en" VARCHAR,
"alternative_titles_ja" VARCHAR,
"start_date" TIMESTAMP,
"end_date" TIMESTAMP,
"synopsis" VARCHAR,
"mean" DOUBLE,
"rank" DOUBLE,
"popularity" BIGINT,
"num_list_users" BIGINT,
"num_scoring_users" BIGINT,
"nsfw" VARCHAR,
"created_at" TIMESTAMP,
"updated_at" TIMESTAMP,
"media_type" VARCHAR,
"status" VARCHAR,
"genres" VARCHAR,
"num_volumes" BIGINT,
"num_chapters" BIGINT,
"authors" VARCHAR,
"pictures" VARCHAR,
"background" VARCHAR,
"related_anime" VARCHAR,
"related_manga" VARCHAR,
"recommendations" VARCHAR,
"serialization" VARCHAR,
"my_list_status_status" VARCHAR,
"my_list_status_is_rereading" VARCHAR,
"my_list_status_num_volumes_read" DOUBLE,
"my_list_status_num_chapters_read" DOUBLE,
"my_list_status_score" DOUBLE,
"my_list_status_updated_at" TIMESTAMP
);Anyone who has the link will be able to view this.