What does the period mean when used with ~ (in a formula)?

前端 未结 1 379
再見小時候
再見小時候 2020-12-03 23:23

From the FSelector manual:

data(iris)
subset <- cfs(Species~., iris)
f <- as.simple.formula(subset, \"Species\")
print(f)

Specificall

相关标签:
1条回答
  • 2020-12-03 23:34

    I think you're referring to the period contained in Species~., in which case this is just the standard R formulation of referring to 'all other variables' in the data frame, rather than typing them out one by one, as in Species ~ Variable1 + Variable2 etc.

    From the help files of ?formula:

    There are two special interpretations of . in a formula. The usual one is in the context of a data argument of model fitting functions and means ‘all columns not otherwise in the formula’: see terms.formula. In the context of update.formula, only, it means ‘what was previously in this part of the formula’.

    0 讨论(0)
提交回复
热议问题