Jonathan Carroll
Jonathan Carroll
Similar: #52
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...

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") ```  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")) ```  Gridlines are on the roadmap, probably an `easy_remove_gridlines` (see also #31). Rotate...