我尝试将来自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))感谢你的帮助,谢谢,
https://stackoverflow.com/questions/44399919
复制相似问题