Skip to content

Instantly share code, notes, and snippets.

View tommylees112's full-sized avatar
🐘

Tommy Lees tommylees112

🐘
View GitHub Profile
@tommylees112
tommylees112 / rspatialresources.md
Created May 9, 2017 14:59 — forked from sboysel/rspatialresources.md
R Spatial Analysis Notes

R Spatial Analysis Notes

Spatial Analysis in R

Key Packages

  • sp - defines the set of base classes for spatial data in R. Most useful for creating, converting, merging, transforming (e.g. projection), and plotting (see spplot) Spatial* objects.
  • rgdal - wrapper
@tommylees112
tommylees112 / intro_to_simulation.R
Created March 27, 2017 22:45 — forked from cjbayesian/intro_to_simulation.R
Introduction to simulation using R
#########################################################
## Intro to Simulation - R/Stats Intro Series
## Designed by: Corey Chivers, 2013
## Department of Biology, McGill University
#########################################################
##@ 0.1 @##
rm(list=ls()) # Housekeeping
#setwd('<my working directory>') # set working dir
@tommylees112
tommylees112 / Makefile
Created March 27, 2017 14:58 — forked from ramnathv/Makefile
R Markdown to IPython Notebook
example.md: example.Rmd
./knit
example.ipynb: example.md
notedown example.md | sed 's/%%r/%%R/' > example.ipynb