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.
- Host: GitHub
- URL: https://github.com/lbuk/elevate
- Owner: lbuk
- License: gpl-3.0
- Created: 2022-01-02T11:19:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-09-09T00:35:58.000Z (almost 3 years ago)
- Last Synced: 2025-02-08T00:41:31.313Z (over 1 year ago)
- Topics: dataviz, density, permutations, r
- Language: R
- Homepage:
- Size: 271 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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')
```

```
# 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')
```
