e_lm {echarts4r} | R Documentation |
Smooth
Description
Plot formulas.
Usage
e_lm(
e,
formula,
name = NULL,
legend = TRUE,
symbol = "none",
smooth = TRUE,
model_args = list(),
...
)
e_glm(
e,
formula,
name = NULL,
legend = TRUE,
symbol = "none",
smooth = TRUE,
model_args = list(),
...
)
e_loess(
e,
formula,
name = NULL,
legend = TRUE,
symbol = "none",
smooth = TRUE,
x_index = 0,
y_index = 0,
model_args = list(),
...
)
Arguments
e |
An |
formula |
formula to pass to |
name |
name of the serie. |
legend |
Whether to add serie to legend. |
symbol |
Symbol to use in |
smooth |
Whether to smooth the line. |
model_args |
Arguments to pass to the underlying model. |
... |
Additional arguments to pass to |
x_index , y_index |
Indexes of x and y axis. |
Examples
iris |>
group_by(Species) |>
e_charts(Sepal.Length) |>
e_scatter(Sepal.Width) |>
e_lm(Sepal.Width ~ Sepal.Length) |>
e_x_axis(min = 4)
mtcars |>
e_charts(disp) |>
e_scatter(mpg, qsec) |>
e_loess(mpg ~ disp, smooth = TRUE, showSymbol = FALSE)
# timeline
iris |>
group_by(Species) |>
e_charts(Sepal.Length, timeline = TRUE) |>
e_scatter(Sepal.Width) |>
e_lm(Sepal.Width ~ Sepal.Length) |>
e_x_axis(min = 4, max = 8) |>
e_y_axis(max = 5)
[Package echarts4r version 0.4.5 Index]