Learn R Programming

itsadug (version 1.0.1)

convertNonAlphanumeric: Utility unction.

Description

Utility unction.

Usage

convertNonAlphanumeric(text)

Arguments

text
A text string (smooth term label) that needs to be converted to a regular expression.

Value

  • A regular expression string.

See Also

Other utility functions: diff_terms; missing_est

Examples

Run this code
data(simdat)
# Model for illustrating coefficients:
m0 <- bam(Y ~ s(Time) + s(Subject, bs='re')
+ s(Time, Subject, bs='re'), data=simdat)

# get all coefficients:
coef(m0)
# to get only the Subject intercepts:
coef(m0)[grepl(convertNonAlphanumeric("s(Subject)"), names(coef(m0)))]
# to get only the Subject slopes:
coef(m0)[grepl(convertNonAlphanumeric("s(Time,Subject)"), names(coef(m0)))]

Run the code above in your browser using DataLab