You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.
The same search returns different id values when limit > 999. Specifically, the returned DOIs are returned with appended references to sections in the paper. E.g. 10.1371/journal.pone.0030394/introduction, 10.1371/journal.pone.0030394/results_and_discussion, and the actual 10.1371/journal.pone.0030394.
Problem: The number of returned items is still the same as the found number of results without URL variations. ==> removing URL variations leads to missing articles in the final dataset
Examples:
No pagination:
pub_dates='publication_date:[2016-01-01T00:00:00Z TO 2016-12-31T23:59:59Z]'journal='journal_key:PLoSONE'doc_type='doc_type:full'fl='id,publication_date,title,author'fq=list(journal, pub_dates, doc_type)
searchplos(q="*:*", fl=fl, fq=fq, limit=999)
# A tibble: 999 x 4
id publication_date author title
<chr> <chr> <chr> <chr>
1 10.1371/journal.pone.0155491 2016-05-13T00:00:00Z Qian Yang,Yan Gu,Xuan Zhang,Jian-Mei Wang,Y… Uterine Expression of NDRG4 Is Induced …
2 10.1371/journal.pone.0168631 2016-12-19T00:00:00Z Lei Deng,Wei Li,Xingming Yu,Chao Gong,Xueha… Correction: First Report of the Human-P…
3 10.1371/journal.pone.0168627 2016-12-21T00:00:00Z Wen-Chan Huang,Hung-Lin Chen,Huan-Yuan Chen… Galectin-3 and Its Genetic Variation rs…
4 10.1371/journal.pone.0155489 2016-05-12T00:00:00Z Yu-Mi Lee,Dong Eun Song,Tae Yong Kim,Tae-Yo… Risk Factors for Distant Metastasis in …
5 10.1371/journal.pone.0168605 2016-12-21T00:00:00Z Zahirah Dhurmeea,Iker Zudaire,Emmanuel Chas… Reproductive Biology of Albacore Tuna (…
6 10.1371/journal.pone.0168602 2016-12-16T00:00:00Z Elmarie Myburgh,Ryan Ritchie,Amy Goundry,Ke… Attempts to Image the Early Inflammator…
7 10.1371/journal.pone.0168604 2016-12-15T00:00:00Z Ying Zhang,Tom Thomas,M J G Brussel,M F A M… Expanding Bicycle-Sharing Systems: Less…
8 10.1371/journal.pone.0155469 2016-05-12T00:00:00Z Chia-Yi Tseng,Chin-Hung Lin,Lung-Yuan Wu,Jh… Potential Combinational Anti-Cancer The…
9 10.1371/journal.pone.0168612 2016-12-16T00:00:00Z Igor Marchetti,Tom Loeys,Lauren B Alloy,Ern… Unveiling the Structure of Cognitive Vu…
10 10.1371/journal.pone.0155472 2016-05-12T00:00:00Z Chuanyu Yang,Charles A Powell,Yongping Duan… Deciphering the Bacterial Microbiome in…
# ... with 989 more rows
With pagination:
searchplos(q="*:*", fl=fl, fq=fq, limit=1000)
# A tibble: 1,000 x 4
id publication_date author title
<chr> <chr> <chr> <chr>
1 10.1371/journal.pone.0030394/introduction 2012-01-23T00:00:00Z Wei-Yao Wang,Tzong-Shi Chiueh,Jun-Ren Sun,Shin-Ming Tsa… NA
2 10.1371/journal.pone.0030394/results_and_discussion 2012-01-23T00:00:00Z Wei-Yao Wang,Tzong-Shi Chiueh,Jun-Ren Sun,Shin-Ming Tsa… NA
3 10.1371/journal.pone.0002157/materials_and_methods 2008-05-14T00:00:00Z Markus Pfenninger,Carsten Nowak NA
4 10.1371/journal.pone.0030394/supporting_information 2012-01-23T00:00:00Z Wei-Yao Wang,Tzong-Shi Chiueh,Jun-Ren Sun,Shin-Ming Tsa… NA
5 10.1371/journal.pone.0044137/materials_and_methods 2012-09-19T00:00:00Z Esmeralda Morillo,María Antonia Sánchez-Trujillo,José R… NA
6 10.1371/journal.pone.0113465/materials_and_methods 2014-12-17T00:00:00Z Patrick Durez,Pierre Vandepapeliere,Pedro Miranda,Antoa… NA
7 10.1371/journal.pone.0099112/introduction 2014-06-10T00:00:00Z Li Qi,Felix G Meinel,Chang Sheng Zhou,Yan E Zhao,U Jose… NA
8 10.1371/journal.pone.0099112/results_and_discussion 2014-06-10T00:00:00Z Li Qi,Felix G Meinel,Chang Sheng Zhou,Yan E Zhao,U Jose… NA
9 10.1371/journal.pone.0099112/materials_and_methods 2014-06-10T00:00:00Z Li Qi,Felix G Meinel,Chang Sheng Zhou,Yan E Zhao,U Jose… NA
10 10.1371/journal.pone.0155488/title 2016-05-20T00:00:00Z Jirayu Tanprasertsuk,Binxing Li,Paul S Bernstein,Rohini… NA
# ... with 990 more rows
The same search returns different
id
values when limit > 999. Specifically, the returned DOIs are returned with appended references to sections in the paper. E.g.10.1371/journal.pone.0030394/introduction
,10.1371/journal.pone.0030394/results_and_discussion
, and the actual10.1371/journal.pone.0030394
.Problem: The number of returned items is still the same as the found number of results without URL variations. ==> removing URL variations leads to missing articles in the final dataset
Examples:
No pagination:
With pagination:
Session Info
The text was updated successfully, but these errors were encountered: