-
``` r
library(tidyverse)
library(naniar)
which_are_shadow %
gather(key = "key",
value = "value",
-which_are_shadow(.)) %>%
select(key, value, everything()) %>%
gather…
-
Dear all,
I'd like to be able to specify a color only for the 2nd half of the plot.
See "reprex" below :
```R
# Not specifying a color, all goes well
ggplot(
ToothGrowth %>%
mutate(ac…
-
in a knitr chunk that outputs a ggplot the chunk header could include track=tracker.object
tracker.object would point to a tracker defined earlier in the page
-
I am trying to implement the calculation for simple slopes estimation for probit models in lavaan as it is currently not support in semTools (I will cross-post).
The idea is to be able to plot the…
-
``` r
library(see)
library(ggplot2)
ggplot(iris, aes(x = Species, y = Sepal.Length, fill = Species)) +
geom_violindot(scale = "count")
```
![](https://i.imgur.com/yPeKSEj.png)
``` r
…
-
Test case which works fine without the call to `scale`:
```r
ggplot(mtcars, aes(mpg, hp)) +
geom_point() +
scale_y_binned(n.breaks = 5) +
geom_magnify(x = 15, width = 5, y = 200, hei…
-
It would be nice if dotSize could accept a variable name (aesthetic mapping).
Is there a way to get the generated ggplot command that your functions create?
ghost updated
9 years ago
-
EDA:
- Don't use featurePlot(); just stick with ggplot
- Be clearer about different plots for categorical vs continuous labels
- Use skimr instead of summaryTools (lots of errors in installing…
-
plot_ggplot(routes, center="Munich, Germany", zoom=14)
Error: GeomRasterAnn was built with an incompatible version of ggproto.
Please reinstall the package that provides this extension.
-
Hi,
thanks for the package and the blog, very informative indeed. I am afraid I get errors importing the lib
`pip install git+https://github.com/tr8dr/tseries-patterns`
```
from tseries_pat…