Skip to content

Commit

Permalink
v 3.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
massimoaria committed Jun 3, 2021
1 parent 04571f6 commit a94f6d1
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
3 changes: 1 addition & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: bibliometrix
Type: Package
Title: Comprehensive Science Mapping Analysis
Version: 3.1.2
Version: 3.1.3
Authors@R: c(person("Massimo", "Aria", email = "[email protected]", role=c("cre","aut")),
person("Corrado", "Cuccurullo", email = "[email protected]", role="aut"))
Description: Tool for quantitative research in scientometrics and bibliometrics.
Expand Down Expand Up @@ -42,7 +42,6 @@ Imports: stats,
stringdist,
stringr,
tidyr,
tidyselect,
tidytext
Suggests:
knitr,
Expand Down
4 changes: 2 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
bibliometrix v3.1.2 (Release date: 2021-05-25)
bibliometrix v3.1.3 (Release date: 2021-05-25)

Changes:
* Solved issue in CRAN Debian release
* Solved issue in bibliometrix binaries for linux releases (from CRAN checks)


bibliometrix v3.1.1 (Release date: 2021-05-10)
Expand Down
2 changes: 1 addition & 1 deletion R/biblioAnalysis.R
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#'
#' results <- biblioAnalysis(management)
#'
#' # summary(results, k = 10, pause = FALSE)
#' summary(results, k = 10, pause = FALSE)
#'
#' @seealso \code{\link{convert2df}} to import and convert an WoS or SCOPUS Export file in a bibliographic data frame.
#' @seealso \code{\link{summary}} to obtain a summary of the results.
Expand Down
3 changes: 2 additions & 1 deletion R/histPlot.R
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ histPlot<-function(histResults, n=20, size = 5, labelsize = 5, title_as_label =
df_net <- df_net %>%
left_join(histResults$histData, by = c("name" = "Paper")) #%>%

Title <- strsplit(df_net$title, "(?<=.{40})", perl = TRUE)
# Title <- strsplit(df_net$title, "(?<=.{40})", perl = TRUE)
Title <- gsub("(.{40})", "\\1\n",df_net$title)
df_net$Title <- unlist(lapply(Title, function(x){
paste(x,"\n",collapse="", sep="")
}))
Expand Down
4 changes: 2 additions & 2 deletions R/summary.bibliometrix.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#'
#' results <- biblioAnalysis(scientometrics)
#'
#' # summary(results)
#' summary(results)
#'
#' @seealso \code{\link{biblioAnalysis}} function for bibliometric analysis
#' @seealso \code{\link{plot}} to draw some useful plots of the results.
Expand Down Expand Up @@ -79,7 +79,7 @@ summary.bibliometrix<-function(object, ...){
MainInfo[length(MainInfo)+1]=paste("Authors of single-authored documents ",object$AuSingleAuthoredArt,"\n")
MainInfo[length(MainInfo)+1]=paste("Authors of multi-authored documents ",object$AuMultiAuthoredArt,"\n")
MainInfo[length(MainInfo)+1]=toupper("\nAuthors Collaboration\n")
MainInfo[length(MainInfo)+1]=paste("Single-authored documents ",format(sum(object$nAUperPaper==1),digits=0),"\n")
MainInfo[length(MainInfo)+1]=paste("Single-authored documents ",as.character(round(sum(object$nAUperPaper==1),0)),"\n")#format(sum(object$nAUperPaper==1),digits=0),"\n")
MainInfo[length(MainInfo)+1]=paste("Documents per Author ",format(object$Articles/object$nAuthors,digits=3),"\n")
MainInfo[length(MainInfo)+1]=paste("Authors per Document ",format(object$nAuthors/object$Articles,digits=3),"\n")
MainInfo[length(MainInfo)+1]=paste("Co-Authors per Documents ",format(mean(object$nAUperPaper),digits=3),"\n")
Expand Down
2 changes: 1 addition & 1 deletion man/biblioAnalysis.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/summary.bibliometrix.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a94f6d1

Please sign in to comment.