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 geenric 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 July 9, 2023, 6:44 p.m.