gf_function | R Documentation |
These functions provide two different interfaces for creating a layer that contains the graph of a function.
gf_function(object = NULL, fun, data = NULL, ..., inherit = FALSE)
gf_fun(object = NULL, formula, data = NULL, ..., inherit = FALSE)
object |
When chaining, this holds an object produced in the earlier portions of the chain. Most users can safely ignore this argument. See details and examples. |
fun |
A function. |
data |
A data frame with the variables to be plotted. |
... |
Additional arguments passed as |
inherit |
A logical indicating whether default attributes are inherited. |
formula |
A formula describing a function. See examples and |
gf_function(fun = sqrt, xlim = c(0, 10))
gf_dhistogram(~age, data = mosaicData::HELPrct, binwidth = 3, alpha = 0.6) |>
gf_function(
fun = stats::dnorm,
args = list(mean = mean(mosaicData::HELPrct$age), sd = sd(mosaicData::HELPrct$age)),
color = "red"
)
gf_fun(5 + 3 * cos(10 * x) ~ x, xlim = c(0, 2))
# Utility bill is quadratic in month?
f <- makeFun(lm(totalbill ~ poly(month, 2), data = mosaicData::Utilities))
gf_point(totalbill ~ month, data = mosaicData::Utilities, alpha = 0.6) |>
gf_fun(f(m) ~ m, color = "red")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.