gpt4 book ai didi

r - 存在日期类型列时,查找字符串 'NA' 并将其替换为 NA

转载 作者:行者123 更新时间:2023-12-03 23:08:35 31 4
gpt4 key购买 nike

我想在所有列中搜索 'NA'并替换为 NA但是当存在日期列时会遇到问题:

library(lubridate)
x = data.frame(a = c('NA', NA), b = c(today(), today()))
x[x == 'NA'] = NA

返回错误:
Error in charToDate(x) : 
character string is not in a standard unambiguous format

我怎样才能摆脱这个?我知道非日期列的名称,试图做类似的事情
col = 'a'
x[x == 'NA', col] = NA

但得到了同样的错误。

最佳答案

错误来自列b是日期类型,“NA”不能解释为日期

x$b == "NA"
Error in charToDate(x) :
character string is not in a standard unambiguous format

代码 x == "NA"遍历数据框的两列。尝试:
x$a[x$a == 'NA'] = NA

关于r - 存在日期类型列时,查找字符串 'NA' 并将其替换为 NA,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60625498/

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