Skip to contents

Retractions attributed to an author.

Usage

author_retractions(name, max_pages = 200L)

Arguments

name

Author name to search (family name is usually enough).

max_pages

Pagination cap; raise it to fetch more than max_pages * 100 records.

Value

A data frame of matching retraction records, or NULL if none.

Examples

# \donttest{
author_retractions("Wakefield")
#>   record_id
#> 1     20801
#> 2      1050
#> 3      4036
#> 4     17269
#>                                                                                                        title
#> 1                                Tandem CAR T cells targeting HER2 and IL13Ra2 mitigate tumor antigen escape
#> 2                                                     Enterocolitis in children with developmental disorders
#> 3 Ileal-lymphoid-nodular Hyperplasia, Non-specific Colitis, and Pervasive Developmental Disorder in Children
#> 4 Ileal-lymphoid-nodular Hyperplasia, Non-specific Colitis, and Pervasive Developmental Disorder in Children
#>                 original_paper_doi                retraction_doi
#> 1                 10.1172/JCI83416             10.1172/JCI131246
#> 2 10.1111/j.1572-0241.2000.03248.x          10.1038/ajg.2010.149
#> 3    10.1016/S0140-6736(97)11096-0 10.1016/S0140-6736(10)60175-4
#> 4    10.1016/S0140-6736(97)11096-0 10.1016/S0140-6736(04)15715-2
#>   original_paper_pubmed_id retraction_pubmed_id
#> 1                 27427982             31264975
#> 2                 11007230             20445528
#> 3                  9500320             20137807
#> 4                  9500320             15016483
#>                                       journal
#> 1 The Journal of Clinical Investigation (JCI)
#> 2    The American Journal of Gastroenterology
#> 3                                      Lancet
#> 4                                      Lancet
#>                                     publisher
#> 1 American Society for Clinical Investigation
#> 2                     Nature Publishing Group
#> 3                                    Elsevier
#> 4                                    Elsevier
#>                                                                                                                                                                                                                                                                                                                                    author
#> 1 Meenakshi Hegde;Malini Mukherjee;Zakaria Grada;Antonella Pignata;Daniel Landi;Shoba A Navai;Amanda Wakefield;Kristen Fousek;Kevin Bielamowicz;Kevin K H Chow;Vita S Brawley;Tiara T Byrd;Simone Krebs;Stephen Gottschalk;Winfried S Wels;Matthew L Baker;Gianpietro Dotti;Maksim Mamonkin;Malcolm K Brenner;Jordan S Orange;Nabil Ahmed
#> 2                                                                                                                                                                                                       Andrew J Wakefield;A Anthony;Simon Harry Murch;M Thomson;S M Montgomery;S Davies;J J O'Leary;M Berelowitz;John Angus Walker-Smith
#> 3                                                                                                                                                                Andrew J Wakefield;Simon Harry Murch;A Anthony;J Linnell;D M Casson;M Malik;M Berelowitz;A P Dhillon;M A Thomson;P Harvey;A Valentine;S E Davies;John Angus Walker-Smith
#> 4                                                                                                                                                                Andrew J Wakefield;Simon Harry Murch;A Anthony;J Linnell;D M Casson;M Malik;M Berelowitz;A P Dhillon;M A Thomson;P Harvey;A Valentine;S E Davies;John Angus Walker-Smith
#>   original_paper_date          retraction_date     retraction_nature reason
#> 1                <NA> 2019-07-02T00:00:00.000Z Expression of concern   <NA>
#> 2                <NA> 2010-05-01T00:00:00.000Z            Retraction   <NA>
#> 3                <NA> 2010-02-06T00:00:00.000Z            Retraction   <NA>
#> 4                <NA> 2004-03-06T00:00:00.000Z            Correction   <NA>
#>                                                                                                                                                  subject
#> 1                                                          (BLS) Biochemistry;(BLS) Biology - Cancer;(BLS) Biology - Cellular;(HSC) Medicine - Oncology;
#> 2                                                                                         (HSC) Medicine - Gastroenterology;(HSC) Medicine - Pediatrics;
#> 3 (BLS) Biology - Cancer;(BLS) Biology - Cellular;(BLS) Neuroscience;(HSC) Medicine - Immunology;(HSC) Medicine - Neurology;(HSC) Medicine - Pediatrics;
#> 4 (BLS) Biology - Cancer;(BLS) Biology - Cellular;(BLS) Neuroscience;(HSC) Medicine - Immunology;(HSC) Medicine - Neurology;(HSC) Medicine - Pediatrics;
#>          country citation_count is_open_access
#> 1  United States            584           <NA>
#> 2 United Kingdom            196           <NA>
#> 3 United Kingdom            195           <NA>
#> 4 United Kingdom           2166           <NA>
# }