convertNonAlphanumeric | R Documentation |
Prepare string for regular expressions (backslash for all non-letter and non-digit characters)
convertNonAlphanumeric(text)
text |
A text string (smooth term label) that needs to be converted to a regular expression. |
A regular expression string.
Jacolien van Rij
Other Utility functions:
corfit()
,
diff_terms()
,
find_difference()
,
missing_est()
,
modeledf()
,
observations()
,
print_summary()
,
refLevels()
,
res_df()
,
summary_data()
,
timeBins()
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)))]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.