All Projects → FlowmapBlue → flowmapblue.R

FlowmapBlue / flowmapblue.R

Licence: MIT license
Flowmap.blue widget for R

Programming Languages

r
7636 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to flowmapblue.R

Course Starter R
👩‍🏫🇷 Starter repo for building interactive R courses
Stars: ✭ 281 (+569.05%)
Mutual labels:  rstudio, rstats
Darkstudio
darkstudio. A dark grey alternative to RStudio's default dark theme.
Stars: ✭ 75 (+78.57%)
Mutual labels:  rstudio, rstats
Summarytools
R Package to Quickly and Neatly Summarize Data
Stars: ✭ 390 (+828.57%)
Mutual labels:  rstudio, rstats
Moderndive book
Statistical Inference via Data Science: A ModernDive into R and the Tidyverse
Stars: ✭ 527 (+1154.76%)
Mutual labels:  rstudio, rstats
Rstudiothemes
A curated list of RStudio themes found on Github
Stars: ✭ 134 (+219.05%)
Mutual labels:  rstudio, rstats
rfordatasciencewiki
Resources for the R4DS Online Learning Community, including answer keys to the text
Stars: ✭ 40 (-4.76%)
Mutual labels:  rstudio, rstats
Rstudioconf tweets
🖥 A repository for tracking tweets about rstudio::conf
Stars: ✭ 32 (-23.81%)
Mutual labels:  rstudio, rstats
lorem
Generate Lorem Ipsum Text
Stars: ✭ 18 (-57.14%)
Mutual labels:  rstudio, rstats
Rbert
Implementation of BERT in R
Stars: ✭ 114 (+171.43%)
Mutual labels:  rstudio, rstats
Shinyapps links
A collection of Shiny applications (links shared on Twitter)
Stars: ✭ 109 (+159.52%)
Mutual labels:  rstudio, rstats
Trackmd
Tools for tracking changes in Markdown format within RStudio
Stars: ✭ 89 (+111.9%)
Mutual labels:  rstudio, rstats
Rcade
Games to procrastinate with RStudio
Stars: ✭ 146 (+247.62%)
Mutual labels:  rstudio, rstats
Rtutor
Creating interactive R Problem Sets. Automatic hints and solution checks. (Shiny or RStudio)
Stars: ✭ 141 (+235.71%)
Mutual labels:  rstudio, rstats
Postcards
💌 Create simple, beautiful personal websites and landing pages using only R Markdown.
Stars: ✭ 208 (+395.24%)
Mutual labels:  rstudio, rstats
epanetReader
Read text files in Epanet's .inp and .rpt formats into R
Stars: ✭ 18 (-57.14%)
Mutual labels:  rstats
cranlogs
Download Logs from the RStudio CRAN Mirror
Stars: ✭ 70 (+66.67%)
Mutual labels:  rstats
travis
⛔ ARCHIVED ⛔ Set Up 'Travis' for Testing and Deployment
Stars: ✭ 61 (+45.24%)
Mutual labels:  rstats
transitland-atlas
an open directory of mobility feeds and operators — powers both Transitland v1 and v2
Stars: ✭ 55 (+30.95%)
Mutual labels:  mobility
music
Music Theory in R
Stars: ✭ 34 (-19.05%)
Mutual labels:  rstats
HumanPilot
Spatial Transcriptomics human DLPFC pilot study part of the spatialLIBD project
Stars: ✭ 22 (-47.62%)
Mutual labels:  rstats

Flowmap.blue R widget

WORK IN PROGRESS

This is a Flowmap.blue widget for R. It produces an interactive flow map representing numbers of movements between locations (origin-destination data).

image

As an alternative, you may also consider using R to populate a spreadsheet for publishing on Flowmap.blue as described in this excellent blog post.

Installation

You need to install devtools if you don't have it yet:

install.packages("devtools")

You can install the package from GitHub as follows:

devtools::install_github("FlowmapBlue/flowmapblue.R")
library(flowmapblue)

Usage

locations <- read.csv('https://gist.githubusercontent.com/ilyabo/a7b9701424257146b571149d92a14926/raw/2e9e1e9bcf64cf0090781b451037229ccb78e1b1/locations.csv')
flows <- read.csv('https://gist.githubusercontent.com/ilyabo/a7b9701424257146b571149d92a14926/raw/2e9e1e9bcf64cf0090781b451037229ccb78e1b1/flows.csv')
mapboxAccessToken <- 'YOUR_MAPBOX_ACCESS_TOKEN'
flowmapblue(locations, flows, mapboxAccessToken, clustering=TRUE, darkMode=TRUE, animation=FALSE)

Here is a nice intro blog post by Paula Moraga.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].