list_plot_x
vectorizes over the x
value,
list_plot_y
vectorizes over the y
value,
list_plot_xy
vectorizes first over x
then over y
, and list_plot_yx
vectorizes over
y
before x
.
list_plot_x(df, x, y, .fun = cont_cont, ...)
list_plot_y(df, x, y, .fun = cont_cont, ...)
list_plot_xy(df, x, y, .fun = cont_cont, ...)
list_plot_yx(df, x, y, .fun = cont_cont, ...)
A named list of plots generated from .fun
.
This function was intended for use with functions
that ultimately call cont_cont()
and
have continuous data on the x and y axes.