Aliases: cloud
Keywords: interface
### ** Examples # a really silly one words <- c(apple=10, pie=14, orange=5, fruit=4) cloud(words)
Warning in par(omar): argument 1 does not name a graphical parameter
# or with more words - take the license for example r <- paste(readLines(file.path(R.home(),"COPYING")), collapse=' ') r <- gsub("[\f\t.,;:`'\\\"\\(\\)<>]+", " ", r) w <- tolower(strsplit(r, " +")[[1]]) cloud(sqrt(table(w)))
Warning in par(omar): argument 1 does not name a graphical parameter
# remove infrequent words wt <- table(w) wt <- log(wt[wt > 8]) cloud(wt, col = col.br(wt, fit=TRUE))
Warning in par(omar): argument 1 does not name a graphical parameter