我有一个数据框,其中有两列'Place'和'Visits'。我只想要那些具有相同'Place'值的行。例如,如果数据框是这样的:
- debug: msg="{{item}}"
with_items: "{{module}}"
我只想在操作后才想要这些行:
Place Visits
China 23
China 48
London 234
Paris 34
Boston 534
Boston 34
如何在R中完成此操作?我尝试使用重复,但它没有给我正确的结果。