为什么我们忽略NULL值而不是在向量中替换为0?

时间:2019-06-04 05:00:04

标签: r null

我有一个字符数据集,其中包含NULL个值作为"NA"。要计算平均值,我应该忽略NA还是将NA替换为0?

有人鼓励我忽略NULL值,而不要替换为0。我的问题是为什么我们不应该替换为0?

OmitNA<-na.omit(oswego$age) # The NA value is omitted and remaining data is stored in OmitNA
AsNum<-as.numeric(OmitNA) # OmitNA from previous step is stored as numberic in AsNum
print(mean(AsNum)) # Mean is calculated

我需要一个理由,为什么我不应该将NULL替换为0。

0 个答案:

没有答案