https://github.com/timcdlucas/paleomorph
Geometric Morphometric Tools for Paleobiology
https://github.com/timcdlucas/paleomorph
morphometrics paleobiology procrustes statistical-analysis
Last synced: 3 months ago
JSON representation
Geometric Morphometric Tools for Paleobiology
- Host: GitHub
- URL: https://github.com/timcdlucas/paleomorph
- Owner: timcdlucas
- License: other
- Created: 2016-06-27T13:58:39.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-05-23T10:44:11.000Z (about 9 years ago)
- Last Synced: 2025-12-09T22:20:47.572Z (6 months ago)
- Topics: morphometrics, paleobiology, procrustes, statistical-analysis
- Language: R
- Size: 143 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
paleomorph
==============
[](https://travis-ci.org/timcdlucas/paleomorph)
[](https://codecov.io/github/timcdlucas/paleomorph?branch=master)
Geometric Morphometric Tools for Paleobiology.
Fills missing symmetrical data with mirroring, calculates Procrustes alignments with or without scaling, and computes vector correlation and covariance matrices (congruence coefficients) of 3D landmarks.
Tolerates missing data for all analyses.
Based on code written by Anjali Goswami.
Installation
-------------
```r
install.packages('paleomorph')
library(paleomorph)
```
Basic usage
------------
```r
# Make an array with 6 specimens and 20 landmarks
a <- array(rep(rnorm(6 * 20, sd = 20), each = 6) + rnorm(20 * 3 * 6 ),
dim = c(20, 3, 6))
# Align the data (although it is already largely aligned)
aligned <- procrustes(a)
plotSpecimens(aligned)
```