Subsetting Data - Quick-R
文章推薦指數: 80 %
R has powerful indexing features for accessing object elements. These features can be used to select and exclude variables and observations. The following code ...
RTutorial
RInterface
DataInput
DataManagement
Statistics
AdvancedStatistics
Graphs
AdvancedGraphs
延伸文章資訊
- 1R語言subset()用法及代碼示例- 純淨天空
R program to create # subset of a data frame # Creating a Data Frame df<-data.frame(row1 = 0:2, r...
- 2Subsetting Data - Quick-R
R has powerful indexing features for accessing object elements. These features can be used to sel...
- 3R语言subset和merge函数的使用_lijinxiu123的博客 - CSDN
R语言subset和merge函数的使用. ... 2、subset函数,从某一个数据框中选择出符合某条件的数据或是相关的列 (1)单条件查询.
- 4R語言subset和merge函式的使用- IT閱讀
R語言subset和merge函式的使用 · > selectresult=subset(df1,name=="aa",select=c(age,sex)); > · > selectresul...
- 5R 语言中subset()函数使用- 何帅 - 博客园
R语言中的subset()应用也可以使用select参数选择指定的列以上是subset函数在结合data.frame进行条件筛选时的常见用法subset函数还可以用在向量上, ...