list_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, ...)the plotting data set
the x-column, as a col_label
the y-column, as col_label
the function to call
arguments passed to fun
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.