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


R 中一个包可能有多个作者,如果我们在研究、书籍、课程或任何其他类型的出版物中使用他们的包,我们可能希望使用他们的姓名。因此,需要找出所有为特定包做出贡献的作者,这可以通过使用带有包名称的 citation 函数来实现,如下例所示。

示例

citation("ggplot2")

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

H. Wickham. ggplot2: Elegant Graphics for Data Analysis. Springer-Verlag New York, 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.cn/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.cn/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.cn/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.cn/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.cn/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.cn/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.cn/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.cn/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.cn/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.cn/package=primes},
}

更新时间: 2020-10-16

367 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告

© . All rights reserved.