如何在R中找到包作者的姓名?

R中的程序包可以有多个作者,如果我们在出版物中将其程序包用于研究,书籍,课程或任何其他类型的内容,则我们可能希望使用其名称。因此,需要找出为特定软件包做出贡献的所有作者,这可以通过使用具有软件包名称的引用函数来完成,如以下示例所示。

示例

citation("ggplot2")

要在出版物中引用ggplot2,请使用-

H.威克姆。ggplot2:用于数据分析的精美图形。纽约,Springer-Verlag,2016年。

LaTeX用户的BibTeX条目是

@Book{,
   author = {Hadley Wickham},
   title = {ggplot2: Elegant Graphics for Data Analysis},
   publisher = {Springer-Verlag New York}, year = {2016},
   isbn = {978-3-319-24277-4},
   url = {https://ggplot2.tidyverse.org},
}

示例

citation("dplyr")

要在出版物中引用软件包“ dplyr”,请使用-

Hadley Wickham, Romain François, Lionel Henry and Kirill Müller (2020). dplyr: A Grammar of Data Manipulation. R package version 1.0.2. https://CRAN.R-project.org/package=dplyr

LaTeX用户的BibTeX条目是

@Manual{
   , title = {dplyr: A Grammar of Data Manipulation},
   author = {Hadley Wickham and Romain François and Lionel
   { Henry} and Kirill Müller}, year = {2020},
   note = {R package version 1.0.2},
    url = {https://CRAN.R-project.org/package=dplyr},
}

示例

citation("data.table")

要在发布中引用包“ data.table”,请使用-

Matt Dowle and Arun Srinivasan (2020). data.table: Extension of `data.frame`. R package version 1.13.0. https://CRAN.R-project.org/package=data.table

LaTeX用户的BibTeX条目是

@Manual{,
   title = {data.table: Extension of `data.frame`},
   author = {Matt Dowle and Arun Srinivasan}, year =    
   {2020}, note = {R package version 1.13.0},
    url = {https://CRAN.R-project.org/package=data.table},
}

示例

citation("plotrix")

要在出版物中引用软件包“ plotrix”,请使用-

Lemon, J. (2006) Plotrix: a package in the red light district of R. R-News, 6(4): 8-12.

LaTeX用户的BibTeX条目是

@Article{,
   year = {2006},
    title = {Plotrix: a package in the red light district of R},
   journal = {R-News}, v
   olume = {6}, number = {4},
   pages = {8-12}, author = {Lemon J},
}

示例

citation("MASS")

要引用出版物中的MASS软件包,请使用-

Venables, W. N. & Ripley, B. D. (2002) Modern Applied Statistics with S. Fourth Edition. Springer, New York. ISBN 0-387-95457-0

LaTeX用户的BibTeX条目是

@Book{, title = {Modern Applied Statistics with S}, author = {W. N. Venables and B. D. Ripley}, publisher = {Springer}, edition = {Fourth}, address = {New York}, year = {2002}, note = {ISBN 0-387-95457-0}, url = {http://www.stats.ox.ac.uk/pub/MASS4}, }

示例

citation("e1071")

要在出版物中引用软件包“ e1071”,请使用-

David Meyer, Evgenia Dimitriadou, Kurt Hornik, Andreas Weingessel and Friedrich Leisch (2019). e1071: Misc Functions of the Department of Statistics, Probability Theory Group (Formerly: E1071), TU Wien. R package version 1.7-3. https://CRAN.R-project.org/package=e1071

LaTeX用户的BibTeX条目是

@Manual{,
    title = {e1071: Misc Functions of the Department of Statistics, Probability Theory Group (Formerly:    E1071), TU Wien},
   author = {David Meyer and Evgenia Dimitriadou and Kurt Hornik and Andreas Weingessel and Friedrich    Leisch}, year = {2019},
   note = {R package version 1.7-3},
   url = {https://CRAN.R-project.org/package=e1071},
}

示例

citation("Matrix")

要在出版物中引用软件包“ Matrix”,请使用-

Douglas Bates and Martin Maechler (2019). Matrix: Sparse and Dense Matrix Classes and Methods. R package version 1.2-18. https://CRAN.R-project.org/package=Matrix

LaTeX用户的BibTeX条目是

@Manual{,
   title = {Matrix: Sparse and Dense Matrix Classes and Methods},
   author = {Douglas Bates and Martin Maechler},
   year = {2019}, note = {R package version 1.2-18},
   url = {https://CRAN.R-project.org/package=Matrix},
}

示例

citation("primes")

要在出版物中引用包“ primes”,请使用-

Os Keyes and Paul Egeler (2020). primes: Fast Functions for Prime Numbers. R package version 1.1.0. https://CRAN.R-project.org/package=primes

LaTeX用户的BibTeX条目是

@Manual{
   , title = {primes: Fast Functions for Prime Numbers},
    author = {Os Keyes and Paul Egeler},
   year = {2020}, note = {R package version 1.1.0},
   url = {https://CRAN.R-project.org/package=primes},
}