lingStuff

Overview

This is a collection of R functions that I often use in my research. Some are borrowed and edited, others are my own. Feel free to fork and edit as you see fit.

Data sets

All data sets have been moved to the untidydata package.

Installation

In order to install this package you must have devtools and version 3.1.3 of R. Don’t know if you have devtools? Copy and paste this into your console:

if (!require('devtools')) {
  stop('The package devtools is not installed')
}

R will load devtools if you have it, otherwise it will give you an error, in which case you should copy and paste the following code into the console:

install.packages("devtools")

Now that you have devtools installed, you can install lingStuff.

devtools::install_github("jvcasillas/lingStuff")