R script to download all abstracts of Nature in 2020 from Pubmed
2
0
Entering edit mode
3.8 years ago
Shicheng Guo ★ 9.4k

Dear All,

Anyone can share a R command to download all abstracts of Nature in 2020 from Pubmed

Thanks.

pubmed abstract • 2.0k views
ADD COMMENT
1
Entering edit mode

You might wish to have a look at this tool. See the end of the webpage for examples.

ADD REPLY
4
Entering edit mode
3.8 years ago
Alex Nesmelov ▴ 200
library(rentrez)

paper_ids <- entrez_search(db = "pubmed",
            "Nature[jour] AND 2020[dp]",
            retmax = 9999,
            use_history = T)

raw_abs <- entrez_fetch(db="pubmed",
                    web_history = paper_ids$web_history,
                    rettype="abstract")
ADD COMMENT
1
Entering edit mode
3.8 years ago
Shicheng Guo ★ 9.4k

Find another way as good as @Alex Nesmelov's proposal. Thanks Alex Nesmelov!

library(easyPubMed)
my_query <- 'Damiano Fantini[AU] AND "2018"[PDAT]'
my_entrez_id <- get_pubmed_ids(my_query)
my_abstracts_txt <- fetch_pubmed_data(my_entrez_id, format = "abstract")
ADD COMMENT
0
Entering edit mode

You should consider accepting @Alex's answer in that case, since it must work and it gave you the direction to find your own.

ADD REPLY

Login before adding your answer.

Traffic: 3239 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6