I generally work with dataframes and could easily do this for a data frame but on my current project I have the need to replace all zeros with NAs in a table structure. For the following two tables (one using table and the other using ftable) how could I replace all zero counts with NA?
x <- with(mtcars,table(am, gear, cyl, vs))
x2 <- with(mtcars,ftable(am, gear, cyl, vs))
This should work:
x[x==0] <- NA
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With