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

https://github.com/lbuk/elevate

An R package for generating and visualising permutations of building elevations including rooftop extensions.
https://github.com/lbuk/elevate

dataviz density permutations r

Last synced: about 1 year ago
JSON representation

An R package for generating and visualising permutations of building elevations including rooftop extensions.

Awesome Lists containing this project

README

          

# elevate

### Overview
elevate is an R package for generating and visualising building elevations using permutations and charts.

### Installation
```
library(devtools)
install_github("lbuk/elevate")
```

### Use
```
library(elevate)

# Visualise elevations
elevations(nbuildings = 7, min_storey = 3, max_storey = 4, output = 'plot')
```
![](https://github.com/lbuk/elevate/blob/master/img/datavis_example_elevate_elevations.png)

```
# Establish the number of storeys per building
storeys = c(4, 5, 4, 4)

# Visualise potential rooftop extension elevations based on the maximum number of storeys per building
extension_elevations(storeys = storeys, max_permitted_storey = 6, output = 'plot')
```
![](https://github.com/lbuk/elevate/blob/master/img/datavis_example_elevate_extension_elevations.png)