Plot colorjam steps in simple scatterplot format
Usage
plot_colorjam_steps(
step,
n = NULL,
hue = NULL,
lines = TRUE,
return_type = c("ptcol", "step_data"),
...
)Arguments
- step
charactername of colorjam step fromcolorjam_steps()- n
integernumber of steps to show, default NULL uses all steps.- hue
numerichue orcharactercolor to convert to color hue, used to colorize points using the actual C,L step values.When no
hueis supplied, the points are colored using a color gradient"Reds"in the order they appear.
- ...
additional arguments are ignored.
Details
Simple function to plot the series of Chroma/Luminance steps
for a given named step series. See steps with colorjam_steps().
See also
Other colorjam hue warp:
add_colorjam_preset(),
add_colorjam_step(),
adjust_hue_warp(),
approx_degrees(),
colorjam_presets(),
colorjam_steps(),
display_degrees(),
h2hw(),
h2hwOptions(),
hcl_to_hsl_hue(),
hsl_to_hcl_hue(),
hw2h(),
mean_angle(),
plot_colorjam_preset(),
remap_colorjam_preset(),
validate_colorjam_preset()
Examples
colorjam_steps()
#> [1] "v19" "v20" "v23" "v24"
step_name <- colorjam_steps()[1]
plot_colorjam_steps(step_name)
step_name <- tail(colorjam_steps(), 1)
plot_colorjam_steps(step_name)
plot_colorjam_steps(step_name, hue="orange")
plot_colorjam_steps(step_name, hue="gold")