-
https://twitter.com/nrennie35/status/1761712006040592748
-
It looks pretty similar to the issue exposed to the R-ggplot2 issues: https://github.com/tidyverse/ggplot2/issues/1607
Having ... + facet_wrap('group_col', scale='free_x') would show X axis, but ..…
-
When using `ffmpeg_renderer()`, the added frames using `end_pause` aren't added to the video. An example:
```
library(ggplot2)
library(gganimate)
anim
JoFAM updated
4 years ago
-
Hi! I leave below an of a type of plot that I have used often when exploring the missingness pattern of longitudinal data. Basically, it gives a 'big picture' overview of the relative number of missin…
-
Hi Cecina,
Thank you for this package. It's really useful. We are using it to compute scagnostics, scatterplot diagnostics. See the cassowaryr package at https://github.com/numbats/cassowaryr
We…
-
Is it possible to add more complex objects like ggplots?
For example I might have a data.frame with columns lat, long, x, y:
``` r
lat, long, x, y
40, 5, 1, 6
40, 5, 2, 8
40, 5, 5, 3
41, 7, 3, 9
41, …
-
Hi @nickdelgrosso ,
thanks for the awesome talk yesterday and the interesting topic. I'm wondering if you've heard about the [bigvis package](https://github.com/hadley/bigvis) in R, which implement…
-
# Summary
- We see how a plot of a 4k x 3k matrix can be made around 10 times
faster than when using `geom_raster()` (45 seconds to 5.6 seconds).
- The differences in performance tell u…
-
The following code works, producing output with `xmin` and `xmax` aligned to bins:
```r
ggplot(mtcars, aes(mpg, hp)) +
geom_rect(aes(xmin = mpg - 5, xmax = mpg + 5, ymin = hp - 5, ymax = hp + …
-