repo is here:https://github.com/aozorabunko/aozorabunko
$ git clone https://github.com/aozorabunko/aozorabunko.git| library(rvest) | |
| library(httr) | |
| library(dplyr) | |
| library(purrr) | |
| # get URLs of detail pages | |
| get_links <- function(num) { | |
| url <- sprintf("http://www.botswanatourism.co.bw/accommodation?field_facility_region_tid=All&title=&page=%d", num) | |
| links <- html(url) %>% |
| # No responsiveness | |
| chartist(data, day) + | |
| Line(x_labelInterpolationFnc = JS_interp(4, offset = 2)) | |
| # responsiveness | |
| chartist(data, day) + | |
| Line(x_labelInterpolationFnc = JS_interp(4, offset = 2)) + | |
| Line(x_labelInterpolationFnc = JS_interp(13, offset = 2), responsive_query = "screen and (min-width: 641px) and (max-width: 1024px)") |
| --- | |
| title: "邪智暴虐なエクセル王を倒そう readxl版" | |
| author: "Hiroaki Yutani" | |
| date: "2015/3/23" | |
| output: html_document | |
| --- | |
| e-Statの邪智暴虐っぷりに打ちのめされていた私ですが、uri氏がやってくれました。 | |
| [邪智暴虐なエクセル王を倒そう](http://rpubs.com/uri-sy/fury_to_estat) |
| # Servers on scaleway are arm, where official Rocker images won't work. | |
| # To make things work, we have to start with onlinelabs/armhf-debian and build Docker image by ourselves. | |
| # | |
| # $ wget -O - https://gist.github.com/yutannihilation/4a00ab73d0864e30392f/raw/armhf-rocker.sh | sh | |
| # | |
| set -xe | |
| mkdir -p r-base rstudio | |
| docker pull onlinelabs/armhf-debian:jessie |
| // referenced this code: http://www.instructables.com/id/Charlieplexed-Arduino-8x8-LED-Grid-Display-Shield-/step2/Code/ | |
| const int UPPERPIN = 13; | |
| const int LOWERPIN = 11; | |
| void setup() { | |
| resetAllPins(); | |
| } | |
| void loop() { | |
| for(int i=LOWERPIN;i<=UPPERPIN;i++){ |
repo is here:https://github.com/aozorabunko/aozorabunko
$ git clone https://github.com/aozorabunko/aozorabunko.git| --- | |
| title: | | |
| Plots the Histograms by Faceting | |
| rdname: ggally_facethist | |
| date: 2015-06-06 | |
| output: html_document | |
| layout: article | |
| category: ggally | |
| images: | |
| FRONTFOMATTER_IMAGES |
| --- | |
| title: "leaflet test" | |
| author: "Hiroaki Yutani" | |
| date: "`r Sys.Date()`" | |
| output: | |
| html_document: | |
| as.iframe: true | |
| --- | |
| source code of this Rmd is here: https://gist.github.com/yutannihilation/7d05bf4c34970258e693 |