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))
私のリストを午前/午後のグループに分割します。TRUEただし、評価されるもの(つまり、PM)のみを表示したいだけです。
TRUE
誰にもアイデアはありますか?
akrunの提案に似ています:
subset(start, grepl('PM', StartTime))