Last chance! 50% off unlimited learning
Sale ends in
creates K tables from a data frame.
ktab.data.frame(df, blocks, rownames = NULL, colnames = NULL,
tabnames = NULL, w.row = rep(1, nrow(df)) / nrow(df),
w.col = rep(1, ncol(df)))
a data frame
an integer vector for which the sum must be the number of variables of df. Its length is the number of arrays of the K-tables
the row names of the K-tables (otherwise the row names of df)
the column names of the K-tables (otherwise the column names of df)
the names of the arrays of the K-tables (otherwise "Ana1", "Ana2", …)
a vector of the row weightings
a vector of the column weightings
returns a list of class ktab
. See ktab
.
# NOT RUN {
data(escopage)
wescopage <- data.frame(scalewt(escopage$tab))
wescopage <- ktab.data.frame(wescopage, escopage$blo,
tabnames = escopage$tab.names)
plot(sepan(wescopage))
data(friday87)
w <- data.frame(scale(friday87$fau, scal = FALSE))
w <- ktab.data.frame(w, friday87$fau.blo, tabnames = friday87$tab.names)
kplot(sepan(w))
# }
Run the code above in your browser using DataLab