Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/PredictiveEcology/quickPlot
A system of plotting that uses grid optimized for speed and modularity
https://github.com/PredictiveEcology/quickPlot
plotting r-package visualization
Last synced: 3 months ago
JSON representation
A system of plotting that uses grid optimized for speed and modularity
- Host: GitHub
- URL: https://github.com/PredictiveEcology/quickPlot
- Owner: PredictiveEcology
- License: other
- Created: 2017-06-20T02:46:46.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-09T06:29:14.000Z (5 months ago)
- Last Synced: 2024-06-11T18:41:54.821Z (5 months ago)
- Topics: plotting, r-package, visualization
- Language: R
- Homepage: https://quickplot.predictiveecology.org/
- Size: 27.4 MB
- Stars: 6
- Watchers: 5
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# quickPlot
[![R build status](https://github.com/PredictiveEcology/quickPlot/workflows/R-CMD-check/badge.svg)](https://github.com/PredictiveEcology/quickPlot/actions)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/quickPlot)](https://cran.r-project.org/package=quickPlot)
[![Downloads](https://cranlogs.r-pkg.org/badges/grand-total/quickPlot)](https://cran.r-project.org/package=quickPlot)
[![codecov](https://codecov.io/gh/PredictiveEcology/quickPlot/branch/master/graph/badge.svg)](https://app.codecov.io/gh/PredictiveEcology/quickPlot)Built on top of `grid`, this package aims at making a high-level plotting system that is optimized for speed and modularity.
This has great utility for quick visualizations when testing code, with the key benefit that visualizations are updated independently of one another.## Installation
The suggested package `fastshp` can be installed with:
```{r}
install.packages("fastshp", repos = "https://rforge.net", type = "source") or for binary:
install.packages('fastshp', repos = 'https://PredictiveEcology.r-universe.dev')
```Building packages from source requires the appropriate development libraries for your operating system (*e.g.*, Windows users should install [Rtools](https://cran.r-project.org/bin/windows/Rtools/)).
### Current stable release
**Install from CRAN:**
```r
install.packages("quickPlot")
```**Install from GitHub:**
```r
#install.packages("devtools")
library("devtools")
install_github("PredictiveEcology/quickPlot", dependencies = TRUE) # stable
```### Development version (unstable)
**Install from GitHub:**
```r
#install.packages("devtools")
library("devtools")
install_github("PredictiveEcology/quickPlot", ref = "development", dependencies = TRUE) # unstable
```