Description Usage Arguments Value Examples
View source: R/plot_visnetwork.R
function to plot the visnetwork object based on the data input
1 2 3 4 5 6 7 8 9 10 | plot_visnetwork(
data,
show_label = F,
show_legend = T,
seed = 123,
name_net = "None",
show_negative = F,
contract_net = T,
size_opt = "fixed"
)
|
data |
list of two ffdf objects generated by the geNet algorithm. Mandatory argument. |
show_label |
show the labels of the nodes? |
show_legend |
show the legend of groups? |
seed |
set the seed of the current instance |
name_net |
name of the network |
show_negative |
show negative edges? |
contract_net |
Should the network be contracted? Default to True |
size_opt |
Default to "fixed". Note: if the there are too many nodes the size of the node is reduced regardless the option specified by the user. |
data: data object modified with the new size layer
1 2 3 4 5 6 7 | ## Not run:
plot_visnetwork(data,show_label=F,
show_legend=T,seed=123,name_net="None",
show_negative=F,contract_net=T,
size_opt="fixed")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.