Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 913 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 913 Bytes

SPELT: Species Pairs Evolutionary Lag Test (SPELT)

Build Status

Build Status

This repository contains functions needed to use SPELT.

Installing SPELT

You can install directly from GitHub if you have the devtools package installed:

library(devtools)
install_github("nhcooper123/SPELT")
library(SPELT)

Totally magical!

Using SPELT

The package has lots of internal functions but the only function you really need is SPELT:

data(shorebird, package = "caper")
SPELT.results <- SPELT(shorebird.tree, shorebird.data,
                     "F.Mass", "Egg.Mass", "Species")
summary(SPELT.results)
plot(SPELT.results)
str(SPELT.results$data)

Check out ?SPELT in R for more details.