highly_cited: Highly Cited Instances

Description Usage Arguments Value Examples

View source: R/highly_cited.R

Description

It finds the number of highly cited instances year-wise.

Usage

1
2
highly_cited(citations, pub_years, ref_citations = NULL,
  ref_pub_years = NULL, top = NULL, year_lim = list())

Arguments

citations

A numeric vector containing citations

pub_years

A numeric vector containing publication years

ref_citations

The citations of reference instances

ref_pub_years

The publication years of reference instances

top

An integer which defines top percent highly cited instances

year_lim

A list conating years and year-wise citation threshold. If not mentioned these values are calculated from ref_citations, ref_pub_years & top.

Value

Returns a list containing number of top highly cited instances with other details

Examples

1
2
3
4
5
6
7
citations<-c(2,0,12,3,1,1,4,5,8,2)
pub_years<-c(2011,2011,2012,2011,2013,2011,2011,2012,2011,2013)
ref_citations<-c(3,0,12,3,1,1,41,5,8,2,2,0,12,30,1,1,4,5,8,12)
ref_pub_years<-c(2012,2011,2012,2013,2013,2011,2011,2012,
2011,2013,2011,2011,2012,2011,2013,2011,2011,2012,2011,2013)
highly_cited(citations,pub_years,ref_citations,ref_pub_years,10)
highly_cited(citations,pub_years,year_lim = list(c(2011, 2012, 2013), c(41, 12, 12)))

scientoText documentation built on May 2, 2019, 1:45 p.m.