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.
在使用 xts 进行子集化时,您通常会设置两个日期/时间之间的范围,例如
df["T08:00/T16:59"]
或者
df["2012-12-12/2012-12-12"]
我想设置开始日期并获得一个特殊时期:例如 14 天。你将如何解决这个问题,计算第二个外部变量。或者是否也可以设置子集的范围?
例子:df["2012-12-12/14days.."]
df["2012-12-12/14days.."]
谢谢!
尝试这个
first(df["2012-12-12/"], "14 days")