Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JohnCoene/gior
A Declarative 3D Globe Data Visualization
https://github.com/JohnCoene/gior
r rstats visualization
Last synced: 3 months ago
JSON representation
A Declarative 3D Globe Data Visualization
- Host: GitHub
- URL: https://github.com/JohnCoene/gior
- Owner: JohnCoene
- License: other
- Created: 2018-09-30T17:15:43.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-02T12:19:36.000Z (over 4 years ago)
- Last Synced: 2024-05-01T15:29:39.198Z (6 months ago)
- Topics: r, rstats, visualization
- Language: R
- Homepage: https://gior.john-coene.com
- Size: 1.03 MB
- Stars: 11
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-shiny-extensions - gior - HTML widget for gio.js for declarative 3D globe data visualization. (Visualization / Maps and Spatial Data)
README
# gior
An htmlwidget for [gio.js](http://giojs.org/) build for the [Geneva R User Group](https://twitter.com/GenevaRUsers). *Not a work in progress, rather left unfinished on purpose.* It comes with an accompanying [blog post](https://blog.john-coene.com/posts/2018-01-01-widget/) that explains its inner-working which will let you understand how to re-build or finish this package yourself.
## About
This [htmlwidget](https://www.htmlwidgets.org/) aims at demonstrating
1. The ease with which one can build an htmlwidget such as [plotly](https://plot.ly/r/) or [leaflet](https://rstudio.github.io/leaflet/).
2. The surprisingly little knowledge of JavaScript that is required.
3. Explain some amazing undocumented features of htmlwidgets.## Installation
Install from Github.
``` r
devtools::install_github("JohnCoene/gior")
```## Example
This is a basic example which shows you how to solve a common problem:
```r
data("country_data")country_data %>%
gior() %>%
g_data(from, to, value)
```## [Documentation](https://gior.john-coene.com/)