How to split a data frame?

后端 未结 8 2272
臣服心动
臣服心动 2020-11-22 03:08

I want to split a data frame into several smaller ones. This looks like a very trivial question, however I cannot find a solution from web search.

8条回答
  •  故里飘歌
    2020-11-22 03:16

    subset() is also useful:

    subset(DATAFRAME, COLUMNNAME == "")
    

    For a survey package, maybe the survey package is pertinent?

    http://faculty.washington.edu/tlumley/survey/

提交回复
热议问题