Jonathan Carroll

Results 149 comments of Jonathan Carroll

I'm thinking (prototyping) a search where a user enters text and gets suggestions for the full call, not just pointers to docs about `element_text()`.

I have a prototype I'll push to a branch that does an okay job, but yeah - if anyone wants to have a go at doing some language stuff on...

Prototype: https://github.com/jonocarroll/howdoi Features: * rough text search for `{ggeasy}` and `{ggplot2}` commands based on function _and_ arguments (thus better than autocomplete) * includes a set of synonyms, so e.g. "smaller...

![Screenshot from 2020-08-08 22-02-15](https://user-images.githubusercontent.com/9496865/89710507-e198ed00-d9c2-11ea-9a0b-936cf9dda363.png)

TODO: - [ ] disable various buttons until ready (`shinyjs::disable()`) - [ ] make look nicer - [ ] RStudio Addin - [ ] command-line mode (with argument, otherwise launch...

Could you add an example of what you'd start with and what the result would be? It might only require a slight change to the `which` argument.

Hi Carlos, thanks for the suggestion! I'm working on a {ggeasy} talk for useR (next week) but after that I'd love to have a go at implementing this. Do I...

Removing: ``` r library(ggplot2) ggplot(mtcars, aes(wt, mpg)) + geom_point() + ggeasy::easy_remove_x_axis(what = "ticks") ``` ![](https://i.imgur.com/ZWvLBym.png) Created on 2019-12-06 by the [reprex package](https://reprex.tidyverse.org) (v0.3.0) How would you like to change them?...

Remove everything: ``` r library(ggplot2) ggplot(mtcars, aes(wt, mpg)) + geom_point() + ggeasy::easy_remove_axes(what = c("ticks", "text", "title")) ``` ![](https://i.imgur.com/g4PqgaF.png) Gridlines are on the roadmap, probably an `easy_remove_gridlines` (see also #31). Rotate...