This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(tidygraph) | |
library(igraph) | |
library(networkD3) | |
# https://www.kaggle.com/unitednations/refugee-data/data | |
asylum_seekers_raw <- read_csv("asylum_seekers.csv") | |
# get the top 10 countries of origin by 'Total decisions' | |
top_orig <- asylum_seekers_raw %>% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(shinydashboard) | |
library(dplyr) | |
ui <- navbarPage("test", | |
tabPanel("dataBuilder", icon = icon("database"), | |
fluidRow( | |
box(width = 3, title = "Data Upload", solidHeader = TRUE, status = "primary", | |
helpText("Choose CSV File (Max size 10 MB)"), | |
fileInput("file1", "", | |
multiple = FALSE, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(lubridate) | |
library(stringr) | |
library(hrbrthemes) | |
library(sf) | |
library(leaflet) | |
# R script to chart and map Paris tree data | |
# data available here https://opendata.paris.fr/explore/dataset/les-arbres/ ---------------- |
NewerOlder