-
I get the following error when running the last chunk of the vignette:
### Plot pathway network
The pathway network is such that it shows metabolites that are connected to different pathways and…
-
Gráfico simples elaborado com apoio do ggplot2.
library(ggplot2)
ggplot(teste3, aes(x = grupo_etario, y=rzs_mas, group=ano))+geom_line(aes(colour=as.factor(ano)))+
labs(x="Grupos Etários", y="Ra…
-
![capture_geom_hist geom_density](https://user-images.githubusercontent.com/32262789/34990108-b93cc3fc-fa79-11e7-976b-83c95278d843.PNG)
Using the pacakge "UsingR" and the data set father.son we hav…
-
ggplot2 has a way to show the shaded confidence area in geom_smooth
ggplot(dat, aes(x=xvar, y=yvar)) +
geom_point(shape=1) +
geom_smooth(method=lm) # Add linear regression line (by defaul…
-
```r
library("ggplot2")
ggplot(data = mpg) + geom_point(mapping = aes(x = displ, y = hwy))
nrow(mpg)
nrow(unique(mpg[ , c("displ","hwy") ]))
ggplot(data = mpg) + geom_jitter(mapping = aes(x = dis…
-
Hi,
I am interested in making my ggplot2 interactive and was wondering if we could leverage your package to add event listeners to a particular layer within a ggplot2.
For example, I want to add a…
-
Will there be support for a geom_rug as ggplot 2 has?
http://docs.ggplot2.org/0.9.2.1/geom_rug.html
-
`easy_gridlines_colour(axis = c("both", "x", "y"), minor = TRUE, major = TRUE, to = NULL, teach = FALSE)`
where `to` is the colour hex code (or colour name)
``` r
library(palmerpenguins)
libr…
-
I'd like to create a legend having text over a point as in the ggplot2 example below. How can I replicate this with plotly. Doesn't need to be a nice and clean `ggplotly()` solution.
```r
library(…
-
Dear all,
here a minimal example:
```
library('survival')
library('ggquickeda')
library('ggplot2')
ggplot(aml, aes(time = time, status = status, color = x)) + geom_km() + geom_kmticks()
```
…