我data.table
的就像:
AccountNo SubscriptionStart SubscriptionEnd
11111 2010-10-12 2011-10-11
11112 2009-03-08 2010-03-08
11112 2010-03-08 2011-03-08
11112 2012-03-08 2013-03-08
11113 2011-08-21 2012-08-21
我想要实现的只是添加一个新列来标记稍后更新的帐户。
换句话说:如果 SubscriptionEnd <= max(SubscitionStart) 在 AccountNo 定义的子集中,GotRenewed 为 TRUE。在此示例中,它将类似于:
AccountNo SubscriptionStart SubscriptionEnd GotRenewed
11111 2010-10-12 2011-10-11 0
11112 2009-03-08 2010-03-07 1
11112 2010-03-08 2011-03-07 1
11112 2012-03-08 2013-03-07 0
11113 2011-08-21 2012-08-21 0
我怎么能做到这一点?我感谢您的帮助!
谢谢。