Description Usage Arguments Details Author(s) References Examples
View source: R/multi.freq.table.R
The multi.freq.table
function takes a data.frame
containing Boolean responses to multiple response questions and tabulates
the number of responses by the possible combinations of answers.
1 2 |
data |
The multiple responses that need to be tabulated. |
sep |
The desired separator for collapsing the combinations of options;
defaults to |
boolean |
Are you tabulating boolean data (see |
factors |
If you are trying to tabulate non-boolean data, and the data
are not factors, you can specify the factors here (see |
NAto0 |
Should |
basic |
Should a basic table of each item, rather than combinations of
items, be created? Defaults to |
dropzero |
Should combinations with a frequency of zero be dropped from
the final table? Defaults to |
clean |
Should the original tabulated data be retained or dropped from
the final table? Defaults to |
In addition to tabulating the frequency (Freq
), there are two
other columns in the output: Percent of Responses
(Pct.of.Resp
) and Percent of Cases (Pct.of.Cases
).
Percent of Responses is the frequency divided by the total number of answers provided; this column should sum to 100 combination table is generated and there are cases where a respondent did not select any option, the Percent of Responses value would be more than 100 cases; this column would most likely sum to more than 100 table is produced since each respondent (case) can select multiple answers, but should sum to 100
Ananda Mahto
apply
shortcut for creating the Combn
column in
the output by Justin. See: http://stackoverflow.com/q/11348391/1270695
and http://stackoverflow.com/q/11622660/1270695
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | ## ========================================= ##
## ============= BOOLEAN DATA ============== ##
# Make up some data
set.seed(1)
dat <- data.frame(A = sample(c(0, 1), 20, replace=TRUE),
B = sample(c(0, 1, NA), 20,
prob=c(.3, .6, .1), replace=TRUE),
C = sample(c(0, 1, NA), 20,
prob=c(.7, .2, .1), replace=TRUE),
D = sample(c(0, 1, NA), 20,
prob=c(.3, .6, .1), replace=TRUE),
E = sample(c(0, 1, NA), 20,
prob=c(.4, .4, .2), replace=TRUE))
# View your data
dat
# How many cases have "NA" values?
table(is.na(rowSums(dat)))
# Apply the function with all defaults accepted
multi.freq.table(dat)
# Tabulate only on variables "A", "B", and "D", with a different
# separator, keep any zero frequency values, and keeping the
# original tabulations. There are no solitary "D" responses.
multi.freq.table(dat[c(1, 2, 4)], sep="-", dropzero=FALSE, clean=FALSE)
# As above, but without converting "NA" to "0".
# Note the difference in the number of valid cases.
multi.freq.table(dat[c(1, 2, 4)], NAto0=FALSE,
sep="-", dropzero=FALSE, clean=FALSE)
# View a basic table.
multi.freq.table(dat, basic=TRUE)
## ========================================= ##
## =========== NON-BOOLEAN DATA ============ ##
# Make up some data
dat2 <- structure(list(Reason.1 = c("one", "one", "two", "one", "two",
"three", "one", "one", NA, "two"),
Reason.2 = c("two", "three", "three", NA, NA,
"two", "three", "two", NA, NA),
Reason.3 = c("three", NA, NA, NA, NA,
NA, NA, "three", NA, NA)),
.Names = c("Reason.1", "Reason.2", "Reason.3"),
class = "data.frame",
row.names = c(NA, -10L))
# View your data
dat2
## Not run: # The following will not work.
# The data are not factored.
multi.freq.table(dat2, boolean=FALSE)
## End(Not run)
# Factor create the factors.
multi.freq.table(dat2, boolean=FALSE,
factors = c("one", "two", "three"))
# And, a basic table.
multi.freq.table(dat2, boolean=FALSE,
factors = c("one", "two", "three"),
basic=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.