plot_dendrogram(x, mode = igraph_opt("dend.plot.type"), ...)## S3 method for class 'communities':
plot_dendrogram(x, mode = igraph_opt("dend.plot.type"),
  ..., use.modularity = FALSE, palette = categorical_pal(8))
communities for details.plot.phylo, plot.dendrogram or plot.hclust.plot_dendrogram supports three different plotting functions, selected via
the mode argument. By default the plotting function is taken from the
dend.plot.type igraph option, and it has for possible values:
autoChoose automatically between the plotting
functions. Asplot.phylois the most sophisticated, that is choosen,
whenever theapepackage is available. Otherwiseplot.hclustis used.phyloUseplot.phylofrom theapepackage.hclustUseplot.hclustfrom thestatspackage.dendrogramUseplot.dendrogramfrom thestatspackage.The different plotting functions take different sets of arguments. When
using plot.phylo (mode="phylo"), we have the following syntax:
plot_dendrogram(x, mode="phylo", colbar = palette(),
            edge.color = NULL, use.edge.length = FALSE, \dots) The extra arguments not documented above: 
colbarColor bar for the edges.edge.colorEdge colors. IfNULL, then thecolbarargument is used.use.edge.lengthPassed toplot.phylo.dotsAttitional arguments to pass toplot.phylo.The syntax for plot.hclust (mode="hclust"): plot_dendrogram(x, mode="hclust", rect = 0, colbar = palette(),
            hang = 0.01, ann = FALSE, main = "", sub = "", xlab = "",
            ylab = "", \dots) The extra arguments not documented above: 
rectA numeric scalar, the number of groups to mark on
    the dendrogram. The dendrogram is cut into exactlyrectgroups and they are marked via therect.hclustcommand. Set
    this to zero if you don't want to mark any groups.colbarThe colors of the rectanges that mark the
    vertex groups via therectargument.hangWhere to put the leaf nodes, this corresponds to thehangargument ofplot.hclust.annWhether to annotate the plot, theannargument ofplot.hclust.mainThe main title of the plot, themainargument
    ofplot.hclust.subThe sub-title of the plot, thesubargument ofplot.hclust.xlabThe label on the horizontal axis, passed toplot.hclust.ylabThe label on the vertical axis, passed toplot.hclust.dotsAttitional arguments to pass toplot.hclust.The syntax for plot.dendrogram (mode="dendrogram"):
plot_dendrogram(x, \dots) The extra arguments are simply passed to as.dendrogram.
karate <- make_graph("Zachary")
fc <- cluster_fast_greedy(karate)
plot_dendrogram(fc)Run the code above in your browser using DataLab