View source: R/add_linear_terms.R
add_linear_terms | R Documentation |
add_linear_terms: Add linear terms to another function. Allows you to easily change an existing function to include linear terms.
add_linear_terms(func, coeffs)
func |
Function to add linear terms to |
coeffs |
Linear coefficients, should have same length as function has dimensions |
Function with added linear terms
banana(c(.1,.2))
add_linear_terms(banana, coeffs=c(10,1000))(c(.1,.2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.