0
我有這樣一個數據幀過濾數據幀:你如何基於R中的多個列
Server Avg_Cpu 95th
Server01 40 90
Server01 45 90
Server02 56 80
Server02 50 80
我需要子集這個數據幀,並選擇具有最高95和Avg_Cpu
獨特的服務器我最後的DF將是這樣的:
Server Avg_Cpu 95th
Server01 45 90
Server02 56 80
我試過dplyr包如下:
df %>% group_by(Server) %>% filter(Avg_Cpu==max(Avg_Cpu))
不太工作,得到:
Error: filter condition does not evaluate to a logical vector.
@bjosesph,我得到這個錯誤: 「錯誤:期待一個單一的值」 – user1471980
請提供數據的「dput」,否則我們無法幫到你,這個問題很快就會關閉。 –