我正在尝试将dplyr链中的anytime包中的anytime()函数应用于以Date结尾的所有列
但是,我收到此错误。
Error: Unsupported Type
当我使用
invoicePayment <- head(raw.InvoicePayment) %>%
mutate_at(ends_with("Date"), funs(anytime))
但是当我使用时没关系
invoicePayment <- head(raw.InvoicePayment) %>%
select(ends_with("Date")) %>%
mutate_at(ends_with("Date"), funs(anytime))
任何帮助表示赞赏,谢谢,