--
- install python-3:
$ pyenv install 3.5.2| Please note that these warnings are just used to help the Homebrew maintainers | |
| with debugging if you file an issue. If everything you use Homebrew for is | |
| working fine: please don't worry or file an issue; just ignore this. Thanks! | |
| Warning: "config" scripts exist outside your system or Homebrew directories. | |
| `./configure` scripts often look for *-config scripts to determine if | |
| software packages are installed, and what additional flags to use when | |
| compiling and linking. | |
| Having additional scripts in your path can confuse software installed via | 
| Homebrew build logs for homebrew/science/paraview on macOS 10.13.2 | |
| Build date: 2017-12-20 09:53:13 | 
| # /r/rugbyunion flair numbers | |
| library(tidyverse) | |
| flair <- read_csv('_r_rugbyunion_user_flair - Sheet1.csv') | |
| flair | |
| british_isles <- filter(flair, Flair_Code %in% c('england', 'ireland', 'wales', 'scotland')) | |
| british_isles | 
| # 'Item*' it the pattern to look for | |
| # sed "s/I/i/g" is the replacement pattern | |
| for f in Item*; mv $f (echo {$f} | sed "s/I/i/g"); end | 
| Homebrew build logs for neovim/neovim/neovim on macOS 10.11.6 | |
| Build date: 2016-11-17 07:31:16 | 
| library("tmap") | |
| library("readxl") | |
| library("maptools") | |
| library("grid") | |
| # ers.usda.gov is undergoing change. found the file here: | |
| download.file("http://www.ers.usda.gov/webdocs/DataFiles/Food_Atlas_Data_Access_and_Documentation_Downloads__18030//DataDownload.xls", destfile = "DataDownload.xls", mode="wb") | |
| df <- read_excel("DataDownload.xls", sheet = "HEALTH") | |
| # download data --- use link above as site is under construction | 
| library("tmap") | |
| library("sp") | |
| # read crime data, downloaded from https://data.police.uk/data/ | |
| tmpdir <- tempdir() | |
| unzip("crimes_in_Greater_London_2016-08.zip", exdir = tmpdir) | |
| crimes <- rbind(read.csv(file.path(tmpdir, "2016-08/2016-08-city-of-london-street.csv")), | |
| read.csv(file.path(tmpdir, "2016-08/2016-08-metropolitan-street.csv"))) | |
| # create SpatialPointsDataFrame of known locations | 
| function loadImage(url, callback) { | |
| var image = new Image(); | |
| image.onload = function() { | |
| callback(null, image); | |
| }; | |
| image.onerror = function() { | |
| callback(new Error('Could not load image at ' + url)); | |
| }; | |
| image.src = url; | |
| } |