尝试使用tidyr::fill()
填充测试数据集中inception_date
和expiry_date
字段中的空白(向下填充):
有困难。比如说,如果我跑步:
library(dplyr)
library(tidyr)
test <- test %>%
mutate(new_inception_date = fill(inception_date, .direction = "down"))
我收到错误消息
no applicable method for 'fill' applied to an object of class "Date"
fill()
不能处理日期字段吗?是否有解决方法?
谢谢你。
1条答案
按热度按时间6yjfywim1#
如建议的那样,
fill
一次处理一个帧。快速演示其用法: