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.
我有一个数据列表,我试图将它们分成 AM 和 PM 组。
我做了
df1 <- split(start, grepl('PM', start$StartTime))
它将我的列表分成 AM/PM 组。但是,我只想查看那些评估为的TRUE(即 PM)。
TRUE
有人有什么主意吗?
类似于 akrun 的建议:
subset(start, grepl('PM', StartTime))