Medium Articles Dataset 📝
Dataset on numerous articles published since 2022 from 7 different publications
@kaggle.arnabchaki_medium_articles_dataset
Dataset on numerous articles published since 2022 from 7 different publications
@kaggle.arnabchaki_medium_articles_dataset
Medium is one of the most famous tools for spreading knowledge about almost any field. It is widely used to published articles on ML, AI, and data science. This dataset is the collection of about 2500 articles in such fields.
The dataset contains articles, their title, number of claps it has received, their links and their reading time.
This dataset was scraped from Medium. I created a Python script to scrap all the required articles using just their tags from Medium.
How to write a good article? How to inform the reader in an interesting way? What sort of title attracts more crowd? How long an article should be?
CREATE TABLE medium_data (
"id" BIGINT,
"url" VARCHAR,
"title" VARCHAR,
"subtitle" VARCHAR,
"claps" DOUBLE,
"responses" BIGINT,
"reading_time" BIGINT,
"publication" VARCHAR,
"date" VARCHAR
);Anyone who has the link will be able to view this.