gpt4 book ai didi

r - 如何在表中包含 NA 数据

转载 作者:行者123 更新时间:2023-12-01 13:19:17 25 4
gpt4 key购买 nike

我最近一直在使用软件包 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com