如何查询Altmetric分数

开放科学不仅是理念,与R语言结合在一起,也成为一个又一个开源项目,这就是已覆盖多数数据库的ropensci项目。在这篇小教程里面,以Altmetric分数为例,示范其使用。

Altmetric分数是什么?它可以查出在论文互引网站、推特、科学博客、专业科学媒体上对论文的议论等。

方法一:

参见老文章:Zotero(3):平板与社交:再谈研究辅助工具Zotero兼配套APP

方法二:

打开RStudio,敲入:

install.packages("devtools")
library(devtools)
install_github('rAltmetric', 'ropensci')

library(rAltmetric)
paper1=altmetrics(id="1518727")
plot(paper1)

一切OK!如下图所示:

Altmetrics1

altmetrics(id=”1518727”) 这里,可以输入论文的唯一标示,比如,

http://www.pceo.org/pubs/JIRS%20Chinese.pdf

这篇论文的唯一标示是:DOI: 10.1080/15562948.2012.646541

输入代码:

paper2=altmetrics(doi="10.1080/15562948.2012.646541")
plot(paper2)

如下图所示:

Altmetrics2

paper1的社交媒体讨论结果如下:

Altmetrics on: "The Geography of Happiness: Connecting Twitter Sentiment and Expression, Demographics, and Objective Characteristics of Place" with altmetric_id: 1518727 published in PLOS ONE.
  provider count
1 Facebook     4
2    Feeds     2
3  Google+     1
4      MSM     1
5    Cited   107
6   Tweets    93
7 Accounts   101

paper2的社交媒体讨论结果如下:

Altmetrics on: "The Health of Immigrants to New York City From Mainland China: Evidence From the New York Health Examination and Nutrition Survey" with altmetric_id: 1553099 published in Journal of Immigrant & Refugee Studies.
  provider count
1    Cited    44
2   Tweets    43
3 Accounts    43

方法二的好处是被其它R程序调用、做元分析、引用与输出更方便。

最新的: