我是小提琴的新手。我试图以1&的边距来围绕prop.tables 2到最近的十分之一。这是我正在使用的代码。第一个prop.table的舍入工作没有边际 - 但对带有边距的两个表没有任何作用。
# table gives a table of counts
table(sex, educ)
# sending the result of table to prop.table gives joint distn
table(sex, educ) %>% prop.table()*100 %>% round(.,1)
# margin selects whether rows or columns sum to 1
table(sex, educ) %>% prop.table(margin = 2)*100 %>% round(.,1)
table(sex, educ) %>% prop.table(margin = 1)*100 %>% round(.,1)
最后两个命令将显示信息到* 100点,然后没有舍入。