R/plot.bibliodendrogram.R

Defines functions plot.bibliodendrogram

Documented in plot.bibliodendrogram

#' Plotting dendrogram resulting from Conceptual Structure Analysis
#'
#' \code{plot} method for class '\code{bibliodendrogram}'
#' @param x is the object for which plots are desired.
#' @param ... is a generic param for plot functions.
#' @return The function \code{plot} draws a dendrogram.
#'
#'
#' @method plot bibliodendrogram
#' @export


plot.bibliodendrogram <- function(x, ...) {
  plot(x$dend)
  abline(h = x$line, lty = 2)
}

Try the bibliometrix package in your browser

Any scripts or data that you put into this service are public.

bibliometrix documentation built on June 8, 2025, 10:58 a.m.