.plotCountPie {wrMisc} | R Documentation |
Pie plot for counting results
Description
This function allows to inspect results of table
or uniqCountReport
on a pie-plot
Note : fairly slow for long vectors !!
Usage
.plotCountPie(
count,
tit = NULL,
col = NULL,
radius = 0.9,
sizeTo = NULL,
clockwise = FALSE,
silent = FALSE,
debug = FALSE,
callFrom = NULL
)
Arguments
count |
(integer vector) counting result |
tit |
(character) optional title in plot |
col |
(character) custom colors in pie |
radius |
(numeric) radius passed to |
sizeTo |
(numeric or charcter) optional reference group for size-population relative adjusting overall surface of pie |
clockwise |
(logical) argument passed to pie |
silent |
(logical) suppress messages |
debug |
(logical) additional messages for debugging |
callFrom |
(character) allow easier tracking of messages produced |
Value
vector with counts of n (total), nUnique (wo any repeated), nHasRepeated (first of repeated), nRedundant), optional figure
See Also
uniqCountReport
, correctToUnique
, unique
Examples
.plotCountPie(table(c(1:5,4:2)))
[Package wrMisc version 1.15.1 Index]