list_plot.Rdlist_plot_x vectorizes over the x value,
list_plot_y vectorizes over the y value,
list_plot_xy vectorizes over x and
then 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, ...)
| df | the plotting data set |
|---|---|
| x | the x-column, as a col_label |
| y | the y-column, as col_label |
| .fun | the function to call |
| ... | arguments passed to |
a 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.