Dan Chaltiel

Results 62 issues of Dan Chaltiel

Hi Nan, Thanks for this great package! I just discovered that you can use global options to set the scale for all your plots: ```r options(ggplot2.discrete.colour=ggsci::scale_colour_lancet) options(ggplot2.discrete.fill=ggsci::scale_fill_lancet) ``` I think...

When using Android Studio 2.3, I get this error : > All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions...

Hi David, I often find myself replacing several bookmarks at once. Hence, I wrote this little function which has proven pretty handy: ``` #' @param bkm_list a list where name...

Hi, When using `fct_reorder()` in presence of missing values, you often do not get the expected result. For instance, in the following code, the "blue" level gets an `NA` summary...

When using fct_reorder(), I often have to use lambda functions on the go and find them very convenient. Would it be possible to support purrr-style lambda functions in order to...

help wanted :heart:
feature

Hi, As stated in [the Tidyverse design guide](https://principles.tidyverse.org/dots-inspect.html#what-are-the-limitations), you cannot use `check_dots_used` if your function uses `enquos(...)` or `match.call()` somewhere. I think it would be a good thing to add...

Hi, It would be very convenient if the value returned in `$warning` and `$message` was the actual condition instead of only the text message when using `quietly()` (or, in an...

Hi, This is a revival of #337: > Use `.default = NA` > _Originally posted by @hadley in https://github.com/tidyverse/purrr/issues/337#issuecomment-311067457_ In fact, applying the closing comment does not solve the original...

Hi, I have a user-supplied string that I want to feed `cli_bullets()`, but it seems to cause a bug if 2 conditions are met: - the string contains an unescaped...

bug

I just discovered this great library, but I get an unexpected behaviour : ``` CalendarProvider provider = new CalendarProvider(this); List eventsList = provider.getEvents(id).getList(); ``` The earliest event I get here...