tinyplot icon indicating copy to clipboard operation
tinyplot copied to clipboard

Lightweight extension of the base R graphics system

Results 75 tinyplot issues
Sort by recently updated
recently updated
newest added

I have spent 20 years trying to get par(lgp=) and other parameters to work for all base plot layouts (creating functions of mfrow etc) but have never found a solution...

Hi @grantmcdermott, you mention in #58 that you'd like to setup a website for `plot2`. Having a dedicated vignette with a gallery of plots made with `plot2` (and with the...

Hi @grantmcdermott, I was looking for how to make ridgeline plots in base R and I came across this package that has a single function to do it: https://github.com/R-CoderDotCom/ridgeline It...

It would be nice if we could support nested grouping. (Or, put differently, allow colours to vary/repeat across units.) This would mostly be useful for line plots where we want...

**Thanks:** Grant @grantmcdermott, the project looks really nice and useful, thanks! **Wishlist:** I just wanted to put on the wishlist that in addition to numeric `x` and `y`, it would...

wishlist

Fixes https://github.com/grantmcdermott/tinyplot/issues/191 I started to work on a completely revised formula handling to address the issue above. This is still leaner than employing the `Formula` package but uses a similar...

In the first example, we have an incorrect window layout _vis-a-vis_ the plotted points. (See the bottom right pane.) ``` r tinyplot::tinyplot(mpg ~ wt, facet = cyl ~ gear, data...

This is just to express a personal preference for avoiding aliases in the `type` argument. There are already lots of possible values, and it may not be clear to users...

Currently, `draw_legend()` and `get_saved_par()` are both exported and documented: http://grantmcdermott.com/tinyplot/man/draw_legend.html Should we make them internal? The documentation for `draw_legend()` already states that this is an internal function, so it may...

This is a refactor of the histogram, boxplot, area, and other helper functions to kickstart a larger refactoring strategy that I could implement. Concepts: 1. Store `by`, `facet`, `x`, `y`...