View source: R/ANOFA-logicals.R
is.formula | R Documentation |
The functions is.formula()
, is.one.sided()
,
has.nested.terms()
,
has.cbind.terms()
, in.formula()
and sub.formulas()
performs checks or extract sub-formulas from a given formula.
is.formula(frm)
is.one.sided(frm)
has.nested.terms(frm)
has.cbind.terms(frm)
in.formula(frm, whatsym)
sub.formulas(frm, head)
frm |
a formula; |
whatsym |
a symbol to search in the formula; |
head |
the beginning of a sub-formula to extract |
These formulas are for internal use.
is.formula(frm)
, has.nested.terms(frm)
, and has.cbind.terms(frm)
returns TRUE if frm is a formula, contains a '|' or a 'cbind' respectively;
in.formula(frm, whatsym)
returns TRUE if the symbol whatsym
is somewhere in 'frm';
sub.formulas(frm, head)
returns a list of all the sub-formulas which contains head
.
is.formula( Frequency ~ Intensity * Pitch )
has.nested.terms( Level ~ Factor | Level )
has.cbind.terms( Frequency ~ cbind(Low,Medium,High) * cbind(Soft, Hard) )
in.formula( Frequency ~ Intensity * Pitch, "Pitch" )
sub.formulas( Frequency ~ cbind(Low,Medium,High) * cbind(Soft, Hard), "cbind" )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.