-3
我喜歡檢索滿足一些條件的行。例如,從下面設置的數字中,我喜歡檢索行percent_free < 10.我如何在R中執行此操作?
Date file Percent_free
2011-12-06 /tmp 2
2011-12-06 /var 9
2011-12-06 /crash 11
我喜歡檢索滿足一些條件的行。例如,從下面設置的數字中,我喜歡檢索行percent_free < 10.我如何在R中執行此操作?
Date file Percent_free
2011-12-06 /tmp 2
2011-12-06 /var 9
2011-12-06 /crash 11
,如果你的數據在data.frame
DF:
df[df$Percent_free < 10,]
但是,它的價值給予R-簡介,Andrie聯讀。
首先閱讀優秀的R手冊:http://cran.r-project.org/doc/manuals/R-intro.html – Andrie 2012-03-23 14:52:25