Dave H
Dave H
It drops off the keys in the legend. ``` library(dplyr) library(ggplot2) library(palmerpenguins) plot_data % group_by(sex, species) %>% summarise(middle = median(body_mass_g, na.rm = TRUE), lower = quantile(body_mass_g, probs = 0.25, na.rm...
It'd be great if addLegend labels argument would accept a function like scales::label_number() This would provide a lot more flexibility and ease in transforming labels
Using pal and values arguments adds NA to legend. ``` library(leaflet) df
There is no ability to have a legend with a fillOpacity or fillColor different to what is in opacity or color. You are currently only able to do this: ```r...
Or make the white_around_sticker argument actually provide transparent? The purpose of this is so that stickers can look good against black or other coloured backgrounds
It is not currently possible to easily make a horizontal bar graph where bars are ordered by size and with NA bars on the bottom of the graph. The graph...
Before with `theme(axis_text = element_text(vjust = 0.5)`: After with `theme(axis_text = element_text(vjust = 0.5)`: Haven't done a pull request to another library before, so apologies if I've done something incorrect