项目作者: Wences91

项目描述 :
Bibliometric plots in R.
高级语言: R
项目地址: git://github.com/Wences91/bibplots.git
创建时间: 2020-02-20T16:00:28Z
项目社区:https://github.com/Wences91/bibplots

开源协议:GNU General Public License v3.0

下载


Build Status

Bibliometric plots

Bibliometric plots in R

Installation

  1. # Install from GitHub
  2. # install.packages('devtools')
  3. devtools::install_github('Wences91/bibplots')

Example

Create a random data.frame with some indicators.

  1. set.seed(958)
  2. library(bibplots)
  3. test <- data.frame(I1=sample(20:40,4),
  4. I2=sample(20:40,4),
  5. I3=sample(20:40,4),
  6. stringsAsFactors = FALSE)
  7. row.names(test) <- c('U1','U2','U3','U4')
  8. head(test)
  9. ## I1 I2 I3
  10. ## U1 25 40 21
  11. ## U2 38 20 40
  12. ## U3 22 31 34
  13. ## U4 40 27 39

Obtain the plot.

  1. p <- bibplots::point_indicators(indicators = test, size=3)
  2. p