Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
massimoaria committed May 10, 2021
1 parent c028f49 commit c327750
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions R/fieldByYear.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#' standard ISI WoS Field Tag codify.
#' @param timespan is a vector with the min and max year. If it is = NULL, the analysis is performed on the entire period. Default is \code{timespan = NULL}.
#' @param min.freq is an integer. It indicates the min frequency of the items to include in the analysis
#' @param n.items is an integer. I indicates the maximun number of items per year to include in the plot.
#' @param n.items is an integer. I indicates the maximum number of items per year to include in the plot.
#' @param labelsize is deprecated argument. It will be removed in the next update.
#' @param dynamic.plot is a logical. If TRUE plot aesthetics are optimized for plotly package.
#' @param graph is logical. If TRUE the function plots Filed Tag distribution by Year graph. Default is \code{graph = TRUE}.
Expand Down Expand Up @@ -45,7 +45,7 @@ fieldByYear <- function(M,


trend_med <- apply(A, 2, function(x) {
round(quantile(rep(M$PY, x), c(0.25,0.50,0.75)))
round(quantile(rep(M$PY, x), c(0.25,0.50,0.75), na.rm=TRUE))
})

trend_med <- as_tibble(t(trend_med)) %>%
Expand Down
2 changes: 1 addition & 1 deletion man/fieldByYear.Rd

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

0 comments on commit c327750

Please sign in to comment.