plotSbm.SimpleSBM_fit {shinySbm} | R Documentation |
plotSbm.SimpleSBM_fit Method
Description
plotSbm method for SimpleSBM_fit object
Usage
## S3 method for class 'SimpleSBM_fit'
plotSbm(
x,
ordered = FALSE,
transpose = FALSE,
labels = NULL,
plotOptions = list()
)
Arguments
x |
Sbm model of class '"SimpleSBM_fit"' |
ordered |
Boolean. Set |
transpose |
isn't used in this method |
labels |
named list (names should be: '"col"' and '"row"') of characters describing columns and rows component (Default is |
plotOptions |
list providing options. See details below. |
Details
The list of parameters plotOptions
for the matrix plot is
"showValues": Boolean. Set TRUE to see the real values. Default value is TRUE
"showPredictions": Boolean. Set TRUE to see the predicted values. Default value is TRUE
"title": Title in characters. Will be printed at the bottom of the matrix. Default value is NULL
"colPred": Color of the predicted values, the small values will be more transparent. Default value is "red"
"colValue": Color of the real values, the small values will close to white. Default value is "black"
"showLegend": Should a legend be printed ? TRUE or FALSE, default: FALSE
"interactionName": Name of connection in legend default: "Connection"
Value
a ggplot object corresponding to the matrix plot inside the app. Groups the network matrix is organized by blocks, the small tiles are for individuals connections. The big tiles between red lines are for block connectivity
Examples
# my_sbm_uni <- sbm::estimateSimpleSBM(sbm::fungusTreeNetwork$tree_tree,
# model = "poisson")
my_sbm_uni <- FungusTreeNetwork$sbmResults$tree_tree
plotSbm(my_sbm_uni,
ordered = TRUE,
plotOptions = list(title = "An example Matrix")
)