ggplot(data = df,mapping =aes(x = Name, y = Age, color = Group)) +geom_col(linewidth =3, fill ="white") +scale_color_dune_d(name ="fermen2")
Continious
ggplot(data.frame(x =rnorm(10000), y =rnorm(10000)),mapping =aes(x = x, y = y)) +geom_hex() +scale_fill_dune_c(name ="harkonnen")#> Warning: Computation failed in `stat_binhex()`.#> Caused by error in `compute_group()`:#> ! The package "hexbin" is required for `stat_bin_hex()`.
ggplot(data = iris,mapping =aes(x = Species, y = Sepal.Width, color = Sepal.Length)) +geom_point(size =2) +scale_color_dune_c(name ="sandworm")