【发布时间】:2017-03-17 09:17:04
【问题描述】:
我无法在 Shiny 中创建列联表。它导致两列并排而不是交叉表。
output$currtarget<-renderTable({
currtgt<- cstable %>%
select(parent_id,tutor_id,status_name,first_name) #%>%
xtabs(as.formula(paste0("~",status_name,"+",first_name),currtgt)
})
【问题讨论】:
标签: shiny contingency