How to include NA data in a table
Asked Answered
S

2

18

I've recently been using the package tab in R to build frequency tables. The default output of the tabfreq() or the tabmulti() functions excludes NA values. How do I include NA values in their outputs?

Surfacetoair answered 14/7, 2018 at 17:32 Comment(1)
I was able to use @Marco Sandri answer for tabfreq(). However, it does not work for tabmulti(). Any thoughts on how to include NA in the output of a table generated with tabmulti()?Surfacetoair
P
34

The table() function in base R can display missing values (i.e. NAs) via useNA, which takes several arguments: "no", "ifany", or "always".

data(airquality) # loads the built-in data frame, which has NAs
table(airquality$Ozone, useNA = "always") # always displays the number of missing values
table(airquality$Wind, useNA = "ifany") # only displays the number of missing values if there are some
Priapus answered 29/3, 2019 at 20:34 Comment(0)
P
4

A possible solution:

library(tab)
library(Hmisc)
data(d)

# NA was treated as a third level
Sex <- factor(d$Sex, exclude=NULL)
freqtable2 <- tabfreq(x = d$Group, y = Sex)
print.char.matrix(freqtable2, col.names=T)

+----------+-----------------+-----------------+-------------------+------+
| Variable |Overall (n = 300)|Control (n = 136)|Treatment (n = 164)|   P  |
+----------+-----------------+-----------------+-------------------+------+
|Sex, n (%)|                 |                 |                   |<0.001|
+----------+-----------------+-----------------+-------------------+------+
|    Female|    155 (51.7)   |    93 (68.4)    |     62 (37.8)     |      |
+----------+-----------------+-----------------+-------------------+------+
|      Male|    142 (47.3)   |    43 (31.6)    |     99 (60.4)     |      |
+----------+-----------------+-----------------+-------------------+------+
|        NA|       3 (1.0)   |      0 (0.0)    |       3 (1.8)     |      |
+----------+-----------------+-----------------+-------------------+------+
Paleography answered 14/7, 2018 at 17:47 Comment(2)
Thanks for this, it's quite helpful. Is there a similar way to apply this to numeric columns?Surfacetoair
@Surfacetoair Contingency tables are normally used with categorical variables. I do not understand what do you need... please, explain me your idea. In the meantime, if you found useful my answer, please, upvote and accept it. Thank you.Paleography

© 2022 - 2024 — McMap. All rights reserved.