作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近一直在使用软件包 tab
在 R 中构建频率表。
使用 tabfreq()
或 tabmulti()
函数,默认输出不包括 NA 值。有谁知道在这些函数中包含 NA 值的命令?
最佳答案
table()
基础 R 中的函数可以通过 useNA
显示缺失值(即 NA) ,它需要几个参数:“no”、“ifany”或“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
关于r - 如何在表中包含 NA 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51341817/
我是一名优秀的程序员,十分优秀!