Artificial Intelligence Arxiv
Analyze recent findings in Artificial Intelligence on Arxiv
@kaggle.johoetter_design_thinking_arxiv
Analyze recent findings in Artificial Intelligence on Arxiv
@kaggle.johoetter_design_thinking_arxiv
arXiv is a free distribution service and an open-access archive for more than 1,000,000 scholarly articles in the fields of physics, mathematics, computer science, quantitative biology, quantitative finance, statistics, electrical engineering and systems science, and economics. I decided to scrape a small subset on Artificial Intelligence. Feel free to play around with this dataset.
Each item represents one paper from Arxiv, described as follows:
title: the name of the paperabstract: a summary describing the contributions and findings of a paperpublished: timestamp when the paper has been releasedauthors: list of each researcherurl: link to the paper on arxivThanks to Arxiv for providing such a database to excellent research papers!
What is the biggest research topic at the moment in Artificial Intelligence? Can you build a graph to link the authors and find some interesting patterns here?
CREATE TABLE arxiv_papers (
"title" VARCHAR,
"abstract" VARCHAR,
"published" VARCHAR,
"authors" VARCHAR,
"url" VARCHAR
);Anyone who has the link will be able to view this.