composeTerm | R Documentation |
Compose and decompose interaction terms to and from their components
composeTerm(components)
composeTerms(listOfComponents)
decomposeTerm(term)
decomposeTerms(terms)
components |
a character vectors of components |
listOfComponents |
a list of character vectors of components |
term |
a string with components separated with colons |
terms |
a character vector of components separated with colons |
composeTerm(c('a', 'b', 'c'))
# 'a:b:c'
composeTerm(c('a', 'b', 'with space'))
# 'a:b:`with space`'
decomposeTerm('a:b:c')
# c('a', 'b', 'c')
decomposeTerm('a:b:`with space`')
# c('a', 'b', 'with space')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.