How do I determine the author of an R package?

后端 未结 4 1457
迷失自我
迷失自我 2021-02-19 03:58

How can I determine who the authors of a package are? Given that we have this widely used code base, I think it is appropriate that I make a reference to the software I use in m

4条回答
  •  一向
    一向 (楼主)
    2021-02-19 04:34

    To be able to cite R or a package, use citation.

    citation()        #for base packages or R itself
    citation("nlme")
    

提交回复
热议问题