Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/r-coderdotcom/cyberpunk

A function to create cyberpunk-style graphs with R based on ggplot2
https://github.com/r-coderdotcom/cyberpunk

Last synced: about 2 months ago
JSON representation

A function to create cyberpunk-style graphs with R based on ggplot2

Awesome Lists containing this project

README

        

# cyberpunk R package
A function to create cyberpunk-style graphs with R based on ggplot2

**Important note**: the final aim of this project is to provide new ggplot2 geoms and themes based on this style. At this moment the project is just a preview (a ggplot2 wrapper actually). If you like this type of charts check also [ggCyberPunk](https://github.com/delabj/ggCyberPunk)

# Installation

```r
# Install the development version from GitHub:
# install.packages("devtools")
devtools::install_github("R-CoderDotCom/cyberpunk")
```

# Line chart
```r
my_df <- data.frame(x = c(4, 5, 5, 7, 9, 8, 6, 7),
z = c(1, 1.5, 4, 3, 5, 6, 4.5, 5))
cyber_lines(x = 0:7,
df = my_df,
area = TRUE,
glow = TRUE,
bg.col = "black",
grid.col = rgb(1, 1, 1, 0.1),
main = "Cyberpunk")
```

# Bar chart
```r
# Data
df <- data.frame(x = c("A","B","C","D"),
y = c(1:4))

# Barplot
cyber_bars(df, area = FALSE, bg.col = "black")
```