doMetacomEntropart {inpdfr} | R Documentation |
Performs an analysis of ecological diversity and structure.
Description
Uses the entropart-package
to analyse the word-occurrence data.frame,
considering words as species and documents as communities.
Usage
doMetacomEntropart(
wordF,
getPlot = c(TRUE, TRUE, TRUE, TRUE),
getTextSink = c(TRUE, TRUE, TRUE, TRUE),
mwidth = 800,
mheight = 800,
formatType = "png"
)
Arguments
wordF |
The data.frame containing word occurrences. |
getPlot |
A vector with four logical values. If |
getTextSink |
A vector with four logical values. If |
mwidth |
The width of the plot in pixels. |
mheight |
The height of the plot in pixels. |
formatType |
The format for the output file ("eps", "pdf", "png", "svg", "tiff", "jpeg", "bmp"). |
Value
A MetaCommunity
object (see entropart-package
).
Examples
## Not run:
data("wordOccuDF")
doMetacomEntropart(wordF = wordOccuDF)
## End(Not run)