git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| library(rgdal) # R wrapper around GDAL/OGR | |
| library(ggplot2) # for general plotting | |
| library(ggmaps) # for fortifying shapefiles | |
| # First read in the shapefile, using the path to the shapefile and the shapefile name minus the | |
| # extension as arguments | |
| shapefile <- readOGR("path/to/shapefile/", "name_of_shapefile") | |
| # Next the shapefile has to be converted to a dataframe for use in ggplot2 | |
| shapefile_df <- fortify(shapefile) |
This snippet makes Vim automatically continue/end lists in insert mode, similar to the way word processors do:
It supports ordered lists with markers like 1. and unordered lists with - markers (because those are the markers I use.)
(It's particularly useful when using an iOS keyboard where punctuation and numerals are slow to access.)
The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
A super short introduction how to call Nim code from R using the .C
interface.
I’m not an R user normally, so I googled and used this post as a
reference:
https://www.r-bloggers.com/three-ways-to-call-cc-from-r/
Let’s define a simple procedure, which we want Nim to do:
| sudo sed -i 's|http://ports.ubuntu.com/ubuntu-ports|http://old-releases.ubuntu.com/ubuntu|g' /etc/apt/sources.list | |
| sudo apt update && sudo apt upgrade -y | |
| sudo sed -i 's|lunar|mantic|g' /etc/apt/sources.list | |
| sudo apt update && sudo apt upgrade -y | |
| # Had to fix the installs for libc6 | |
| sudo apt --fix-broken install | |
| sudo apt dist-upgrade |