Skip to content

Commit d31d1da

Browse files
committed
issue #125: Solved
1 parent 5588fc6 commit d31d1da

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
bibliometrix v3.0.3 (Release date: )
1+
bibliometrix v3.0.3 (Release date: 2020-09-25)
22

33
Changes:
44
* biblioshiny: Improvements in Historiograph visualization

R/biblioAnalysis.R

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
#'
3737
#'
3838
#' @examples
39-
#' data(scientometrics)
39+
#' data(management)
4040
#'
41-
#' results <- biblioAnalysis(scientometrics)
41+
#' results <- biblioAnalysis(management)
4242
#'
4343
#' summary(results, k = 10, pause = FALSE)
4444
#'
@@ -107,6 +107,7 @@ if ("TC" %in% Tags){
107107
PY=as.numeric(M$PY)
108108
CurrentYear=as.numeric(format(Sys.Date(),"%Y"))
109109
TCperYear=TC/(CurrentYear-PY+1)
110+
if (!("DI" %in% names(M))) M$DI <- ""
110111
MostCitedPapers=data.frame(M$SR,M$DI,TC,TCperYear)
111112
MostCitedPapers=MostCitedPapers[order(TC,decreasing=TRUE),]
112113
names(MostCitedPapers)=c("Paper ","DOI","TC","TCperYear")

R/metaTagExtraction.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#' \tabular{lll}{
99
#' \code{"CR_AU"}\tab \tab First Author of each cited reference\cr
1010
#' \code{"CR_SO"}\tab \tab Source of each cited reference\cr
11-
#' \code{"AU_CO"}\tab \tab Country of affiliation for each co-author\cr
11+
#' \code{"AU_CO"}\tab \tab Country of affiliation for co-authors \cr
1212
#' \code{"AU1_CO"}\tab \tab Country of affiliation for the first author\cr
1313
#' \code{"AU_UN"}\tab \tab University of affiliation for each co-author and the corresponding author (AU1_UN)\cr
1414
#' \code{"SR"}\tab \tab Short tag of the document (as used in reference lists)}
@@ -34,7 +34,7 @@
3434
#' scientometrics <- metaTagExtraction(scientometrics, Field = "CR_SO", sep = ";")
3535
#' unlist(strsplit(scientometrics$CR_SO[1], ";"))
3636
#'
37-
#' #Example 3: Affiliation country for co-author
37+
#' #Example 3: Affiliation country for co-authors
3838
#'
3939
#' data(scientometrics)
4040
#' scientometrics <- metaTagExtraction(scientometrics, Field = "AU_CO", sep = ";")

man/biblioAnalysis.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/histPlot.Rd

Lines changed: 12 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)