search for: v_lda

Displaying 1 result from an estimated 1 matches for "v_lda".

Did you mean: lda
2009 Dec 09
1
Exporting Contingency Tables with xtable
Dear R-philes: I am having an issue with exporting contingency tables with xtable(). I set up a contingency and convert it to a matrix for passing to xtable() as shown below. v.cont.table <- table(v_lda$class, grps, dnn=c("predicted", "observed")) v.cont.mat <- as.matrix(v.cont.table) Both produce output as follows: observed predicted uh uh~ uh 201 30 uh~ 6 10 However, when I construct the latex table with xtable(v.cont.mat), I get a good table...