无法在 R 中安装包 rmetadata
Unable to install the package rmetadata in R
我的主要目标是使用标题和期刊名称提取文章的元数据。为此,根据博客 https://ropensci.org/blog/2013/03/15/r-metadata/
,rmetadata
包很有用。但是,我无法使用 install_github()
函数安装软件包。有什么帮助吗?谢谢!
回购现在存档在 https://github.com/ropensci-archive/rmetadata
它确实安装了,请尝试 remotes::install_github("ropensci-archive/rmetadata")
但是,该包不再维护。您可能想使用 rcrossref
,请参阅 https://docs.ropensci.org/rcrossref/ 处的文档。例如,
install.packages("rcrossref")
res = cr_works(flq = c(`query.container-title` = 'Ecology',
`query.bibliographic` = 'An assessment of statistical methods for
nonindependent data in ecological meta-analyses'))
也请参阅交叉引用 API 文档 http://api.crossref.org/swagger-ui/index.html#/Works/get_works
我的主要目标是使用标题和期刊名称提取文章的元数据。为此,根据博客 https://ropensci.org/blog/2013/03/15/r-metadata/
,rmetadata
包很有用。但是,我无法使用 install_github()
函数安装软件包。有什么帮助吗?谢谢!
回购现在存档在 https://github.com/ropensci-archive/rmetadata
它确实安装了,请尝试 remotes::install_github("ropensci-archive/rmetadata")
但是,该包不再维护。您可能想使用 rcrossref
,请参阅 https://docs.ropensci.org/rcrossref/ 处的文档。例如,
install.packages("rcrossref")
res = cr_works(flq = c(`query.container-title` = 'Ecology',
`query.bibliographic` = 'An assessment of statistical methods for
nonindependent data in ecological meta-analyses'))
也请参阅交叉引用 API 文档 http://api.crossref.org/swagger-ui/index.html#/Works/get_works