Medium Articles
A collection of articles on ML, AI and data science
@kaggle.hsankesara_medium_articles
A collection of articles on ML, AI and data science
@kaggle.hsankesara_medium_articles
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 350 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. Check out the script here
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 articles (
"author" VARCHAR,
"claps" VARCHAR,
"reading_time" BIGINT,
"link" VARCHAR,
"title" VARCHAR,
"text" VARCHAR
);Anyone who has the link will be able to view this.