Learn R Programming

tidyplots (version 0.2.2)

sort_x_axis_labels: Sort axis or color labels

Description

Sort axis or color labels

Usage

sort_x_axis_labels(plot, ..., .fun = NULL, .reverse = FALSE)

sort_y_axis_labels(plot, ..., .fun = NULL, .reverse = FALSE)

sort_color_labels(plot, ..., .fun = NULL, .reverse = FALSE)

Value

A tidyplot object.

Arguments

plot

A tidyplot generated with the function tidyplot().

...

Optional variables to use for sorting.

.fun

Override the function used for sorting. Is automatically determined from the plot.

.reverse

Whether the order should be reversed or not. Defaults to FALSE, meaning not reversed.

Examples

Run this code
# Before adjustments
study |>
  tidyplot(x = treatment, y = score) |>
  add_data_points() |>
  add_mean_bar(alpha = 0.4) |>
  add_sem_errorbar()

# Sort x-axis labels by score
study |>
  tidyplot(x = treatment, y = score) |>
  add_data_points() |>
  add_mean_bar(alpha = 0.4) |>
  add_sem_errorbar() |>
  sort_x_axis_labels()

# Before adjustments
study |>
  tidyplot(x = score, y = treatment) |>
  add_data_points() |>
  add_mean_bar(alpha = 0.4) |>
  add_sem_errorbar()

# Sort y-axis labels by score
study |>
  tidyplot(x = score, y = treatment) |>
  add_data_points() |>
  add_mean_bar(alpha = 0.4) |>
  add_sem_errorbar() |>
  sort_y_axis_labels()

# Before adjustment
study |>
  tidyplot(x = group, y = score, color = treatment) |>
  add_data_points() |>
  add_mean_bar(alpha = 0.4) |>
  add_sem_errorbar()

# Sort color labels by score
study |>
  tidyplot(x = group, y = score, color = treatment) |>
  add_data_points() |>
  add_mean_bar(alpha = 0.4) |>
  add_sem_errorbar() |>
  sort_color_labels()

Run the code above in your browser using DataLab