skip_label()
is a utility function that creates intervals of missing
labels for ggplot2
charts. This is
useful when you have a large number of labels in a axis and you want to
remove some of them.
Use this function in the label
argument of functions like
scale_x_continuous()
or
scale_y_discrete()
.
Value
A character
vector of labels with some
them missing (""
).
Examples
skip_label(x = 0:5, type = "even")
#> [1] "0" "" "2" "" "4" ""
#> [1] "0" "" "2" "" "4" "" # Expected
skip_label(x = 0:5, type = "odd")
#> [1] "" "1" "" "3" "" "5"
#> [1] "" "1" "" "3" "" "5" # Expected
skip_label(x = 0:5, type = "one")
#> [1] "0" "1" "" "3" "4" ""
#> [1] "0" "1" "" "3" "4" "" # Expected