Description Usage Arguments Value Examples
View source: R/createWordCloud.R
Create Word Cloud
1 2 3 4 5 | createWordCloud(
oc,
by = c("ontology_cluster", "link_community")[1],
excludeWord = NULL
)
|
oc |
|
by |
Create the word cloud from either "ontology cluster" or "link community". Default is "ontology_cluster" |
excludeWord |
Words to exclude from word-cloud (e.g. regulation) |
A data.frame
with columns "word", "freq" and "group".
1 2 3 4 5 | ontology.id <- sample_data$GOBP$ID[1:50]
network <- createOntologyNetwork(ontology.id, method = "jaccard", weighted = FALSE)
lc <- getLC(network)
oc <- getOntoClust(lc)
createWordCloud(oc)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.