massimoaria / bibliometrix

An R-tool for comprehensive science mapping analysis. A package for quantitative research in scientometrics and bibliometrics.
https://www.bibliometrix.org
Other
496 stars 147 forks source link

How do I implement specified output? #52

Closed perlatex closed 5 years ago

perlatex commented 5 years ago

` data(scientometrics)

histResults <- histNetwork(scientometrics, sep = ";")

net <- histPlot(histResults, n = 20, size.cex = TRUE, size = 5, arrowsize = 0.3) `

In Rmarkdown beamer, this function generates one data.frame and one plots. The graph is very beautiful, so i want to hide the data.frame and show plot only. How do I implement specified output?

massimoaria commented 5 years ago

I have just introduced a new argument (verbose) in HistPlot function. Setting verbose=FALSE, histPlot draws only the graph.

net <- histPlot(histResults, n = 20, size.cex = TRUE, size = 5, arrowsize = 0.3, verbose=FALSE)