The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
ggshadow
: Shadow
Geoms for ggplot2Get the development version from github:
## install.packages("devtools")
::install_github("marcmenem/ggshadow") devtools
## after installing the package
vignette("ggshadow", package="ggshadow")
library(ggplot2)
library(ggshadow)
ggplot(economics_long, aes(date, value01, colour = variable)) + geom_shadowline()
library(ggplot2)
ggplot(economics_long, aes(date, value01, colour = variable)) + geom_line()
ggshadow
supports varying the line colorlibrary(ggshadow)
library(ggplot2)
ggplot(economics_long,
aes(date, value01,
group = variable,
colour=value01,
shadowcolor='grey',
shadowalpha=0.5,
shadowsize=5*(1-value01))) +
geom_shadowline()
ggshadow
also provides a Neon glow style```{r fig.height=7, fig.width=7}
ggplot(economics_long, aes(date, value01, color = variable)) + geom_glowline() + guides(color=‘none’) + theme(plot.background = element_rect(fill = “#190132”), panel.background = element_rect(fill = “#190132”))
![glowline](example-glow.png)
### Neon glow points
```{r}
ggplot(mtcars, aes(wt, mpg)) +
geom_glowpoint(color='yellow') +
guides(color='none') +
theme(plot.background = element_rect(fill = "#190132"),
panel.background = element_rect(fill = "#190132"))
library(dplyr)
ggplot(filter( economics_long, variable %in% c('pop', 'unemploy') ),
aes(date, value01-0.5, color = variable, fill=variable)) +
geom_glowline() + guides(color='none', shadowcolour='none', fill='none') +
theme(plot.background = element_rect(fill = "#190132"),
panel.background = element_rect(fill = "#190132"))
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.