Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何NA在 R zoo 系列中用零替换值?我一直在阅读na.locf,na.omit 但我认为他们都没有做我需要的。
NA
na.locf
na.omit
谢谢。
我对动物园系列不熟悉,但这就是你使用矢量的方式。这应该工作。
x = c(NA,1,2,3) x[ is.na(x) ] <- 0 print (x)
使用na.fill. 如果z是动物园系列:
na.fill
z
na.fill(z, fill = 0)