This repository contains functions needed to use SPELT.
You can install directly from GitHub if you have the devtools package installed:
library(devtools)
install_github("nhcooper123/SPELT")
library(SPELT)
Totally magical!
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.