0

doi を使用して論文からすべての参照を取得し、データフレームに保存するにはどうすればよいでしょうか?

rscopus の使用:

library(rscopus)
library(dplyr)

auth_token_header("please_add")
akey="please_add"
object_retrieval("10.1109/ISCSLP.2014.6936630", ref = "doi")

これは正しい選択肢ですか?

4

2 に答える 2

0

これが実際に Scopus によって索引付けされているかどうかはわかりません。

library(rscopus)
x = abstract_retrieval("10.1109/ISCSLP.2014.6936630", identifier= "doi")
#> HTTP specified is:https://api.elsevier.com/content/abstract/doi/10.1109/ISCSLP.2014.6936630
x$content
#> $`service-error`
#> $`service-error`$status
#> $`service-error`$status$statusCode
#> [1] "RESOURCE_NOT_FOUND"
#> 
#> $`service-error`$status$statusText
#> [1] "The resource specified cannot be found."

process_author_name(last_name = "Lin", first_name = "Xuee")
#> HTTP specified is (without API key): https://api.elsevier.com/content/search/author?query=AUTHFIRST%28Xuee%29%2BAND%2BAUTHLAST%28Lin%29&count=200&start=0
#> Error in process_author_name(last_name = "Lin", first_name = "Xuee"): No author name found

reprex パッケージ(v0.2.1)により 2019-01-28 に作成

于 2019-01-28T16:08:53.623 に答える