Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将格式为 YYYY-QQ 的字符变量2010-Q1转换为可以用作日期的东西,例如 。我玩过as.yearqtr,但不能只弄清楚输出格式。不过,我无法定义输入格式。
2010-Q1
as.yearqtr
编辑:
在这里也得到了解答。
您必须在as.yearqtr公式中使用正确的格式,如下所示:
library(zoo) x<-"2010-Q1" as.yearqtr(x, format = "%Y-Q%q") [1] "2010 Q1"