How do I make borders in a contingency table built in R?

前端 未结 3 1159
没有蜡笔的小新
没有蜡笔的小新 2021-01-26 10:55

I have made a contingency table in R, shown below:

count <- table (dframe1$Contact, dframe1$Brokenbones)          # create the table

 count                           


        
3条回答
  •  甜味超标
    2021-01-26 11:49

    Here is yet another possibility, with the stargazer package. It's primary goal is to produce good-looking lm() tables, but you can do more.

    require(stargazer)
    star <- stargazer(mytable, type = "text", 
                      title = "Stargazer with Summary = FALSE", 
                      summary = FALSE)
    

提交回复
热议问题