Skip to contents

Reverse axis or color labels

Usage

reverse_x_axis_labels(plot)

reverse_y_axis_labels(plot)

reverse_color_labels(plot)

Arguments

plot

A tidyplot generated with the function tidyplot().

Value

A tidyplot object

Examples

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


# Reverse x axis labels
study %>%
  tidyplot(x = treatment, y = score) %>%
  add_data_points() %>%
  add_mean_bar(alpha = 0.4) %>%
  add_sem_errorbar() %>%
  reverse_x_axis_labels()


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


# Reverse y axis labels
study %>%
  tidyplot(x = score, y = treatment) %>%
  add_data_points() %>%
  add_mean_bar(alpha = 0.4) %>%
  add_sem_errorbar() %>%
  reverse_y_axis_labels()


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


# Reverse color labels
study %>%
  tidyplot(x = group, y = score, color = dose) %>%
  add_data_points() %>%
  add_mean_bar(alpha = 0.4) %>%
  add_sem_errorbar() %>%
  reverse_color_labels()