my intention is to know how I can extract or convert to data.frame or any other, well my goal is to try to use it in knitr with latex.
library(foreign)
library(sjPlot)
tb = read.spss(file = "dates.sav",use.value.labels = T,to.data.frame = T)
c = sjt.corr(tb[c(1,3,5)],show.p = T,p.numeric = T)
c # view in html
when trying to use knitr with latex a tremendous html code comes out and not the table seen in R.
<<echo=FALSE>>
c = sjt.corr(tb[c(1,3,5)],show.p = T,p.numeric = T)
c % show code html