Grant McDermott
Grant McDermott
Great, thanks @zeileis. I agree with all of your suggestions. (As you imply, we already do some of these but we can make them more explicit in the examples.) My...
Okay, I think that I've just about managed to address all of the outstanding issues. Again, all changes are tracking in the "cran" branch here: https://github.com/grantmcdermott/tinyplot/tree/cran Some notes: - All...
P.S. > I also had a look at the internals of .tpar but didn't fully get why this is implemented like this. Personally, I would have just used something like...
> Then users could set `restore.par = TRUE` routinely - maybe even via `tpar()` - but they would still be able to add graphical elements afterwards. Ah, I see. We...
Sorry for the radio silence. Very busy with work and family visiting. I've gone ahead with my suggested implementation of `get_saved_par()` in https://github.com/grantmcdermott/tinyplot/pull/151/commits/3d57e7d1326a676d54b7d002d2e2af111f96d52a, which allows users to recover the `par`...
Just resubmitted. I tried to document/summarise the main points in [cran-comments.md](https://github.com/grantmcdermott/tinyplot/blob/cran/cran-comments.md#overview). Let's hold thumbs!
Accepted and now available on CRAN 🎉🎉🎉 https://cran.r-project.org/web/packages/tinyplot/index.html Thanks @zeileis and @vincentarelbundock for all your help in getting this over the line!
Related to this, I wonder if we should support an `alpha = ` argument for easy transparency of colours? On a recent project, I find myself doing variants of `plt(many_points,...
FWIW, this now works in the [`cran`](https://github.com/grantmcdermott/tinyplot/tree/cran) branch. ``` r library(tinyplot) tinyplot(lat ~ long | depth, data = quakes, cex = 3, pch = 21, bg = 0.2) ``` ...
Probably worth adding support for `type = "barplot"` (and hence `tinyhist()`/`hst()` and `tinybarplot()`/`brplt()`) at the same time.