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('dplyr') | |
| library('reshape2') | |
| library('ggplot2') | |
| library('Hmisc') | |
| options(stringsAsFactors=FALSE) | |
| getFiles <- function(m) { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| # see http://bit.ly/Nt5jpg | |
| # http://www.datamediahub.it/2014/03/18/societa-dellinformazione-il-ritmo-di-crescita-delle-regioni-in-10-anni-mappa-interattiva/ | |
| library(ggplot2) | |
| library(reshape2) | |
| g62 <- read.csv2("g62.csv", skip = 1) | |
| x <- g62[!colnames(g62) %in% paste0("X", 1995:2002)] |
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
| # | |
| # Dati orari delle centraline per il monitoraggio della qualità dell'aria | |
| # http://www.arpat.toscana.it/datiemappe/dati/qualita-dellaria-dati-orari | |
| # | |
| library(plyr) | |
| options(stringsAsFactors = FALSE) | |
| url <- "http://sira.arpat.toscana.it/sira/inspire/data/qualita_aria" |
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
| <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"> </script> | |
| <script> | |
| var data0 = []; | |
| var data = []; | |
| var jsonurl = "https://USERNAME.cloudant.com/DB/_design/myView/_view/test?group_level=2"; | |
| /* Structur {"key":[year,month],"value":[mean,lenght]} |
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
| { | |
| "name": "flare", | |
| "children": [ | |
| { | |
| "name": "ABRUZZO", | |
| "children": [ | |
| { | |
| "name": "Villa", | |
| "size": 3 | |
| }, |
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(XLConnect) | |
| library(jsonlite) | |
| xcols <- c("character", rep("numeric", 6)) | |
| wb <- loadWorkbook("311_13.xls") | |
| x <- readWorksheet(wb, sheet = "pop", | |
| startRow = 6, startCol = 2, | |
| endRow = 43, endCol = 8, |
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
| Week | |
| Day 49 50 51 52 | |
| 2014-12-02 95102 0 0 0 | |
| 2014-12-03 96348 0 0 0 | |
| 2014-12-04 96113 0 0 0 | |
| 2014-12-05 48249 0 0 0 | |
| 2014-12-06 79741 0 0 0 | |
| 2014-12-07 41050 0 0 0 | |
| 2014-12-08 41433 0 0 0 | |
| 2014-12-09 0 96238 0 0 |
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
| ############################################################### | |
| # | |
| # Export data to a local CouchDB | |
| # | |
| ############################################################### | |
| library("RODBC") | |
| #devtools::install_github("sckott/sofa") | |
| library('sofa') # SHA: e9808c48e3ad40 |
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('rvest') # >= rvest 0.2.0.9000 | |
| library('dplyr') | |
| library('stringr') | |
| library('pbapply') | |
| options(stringsAsFactors = FALSE) | |
| ########################################################################################### | |
| Get_Provincia_pagine <- function() { |
OlderNewer