您可以将storage.mode数字设置为.
storage.mode
storage.mode(x) <- "numeric"
但我鼓励您首先查找数据的根本原因/来源.storage.mode如果对象中的某些值不能表示为数字,则设置为数字可能具有破坏性(如果无法转换任何值,则R将发出警告).
转换为数字后,您可以使用na.locf以前的值填充缺少的值.
na.locf
x <- na.locf(x)