currycarbon-0.2.1.2: src/Currycarbon/Types.hs
{-# LANGUAGE StrictData #-}
module Currycarbon.Types where
import qualified Data.Vector as V
import qualified Data.Vector.Unboxed as VU
-- * Data types
--
-- $dataTypes
--
-- This module defines the relevant data types for handling radiocarbon dates
-- | Different calibration algorithms implemented in currycarbon. Currently two distinct
-- implementations are available, although both of them are similar [Intercept calibration](https://en.wikipedia.org/wiki/Radiocarbon_calibration#Intercept)
-- algorithms. Maybe more algorithms will be added in the future
data CalibrationMethod =
-- | A matrix multiplication method generally following [this blog post by Martin Hinz](https://www.martinhinz.info/jekyll/update/blog/2016/06/03/simple_calibration.html).
-- This method is slower and the underlying code more verbose than 'Bchron', but it
-- has some advantages regarding didactics and the inspection of intermediate data
-- products for debugging.
-- Using this method is thus generally not advisable, except for specific applications,
-- where a more technical insight into C14 calibration is needed
MatrixMultiplication
-- | A fast and reliable calibration algorithm very similar to the implementation in the
-- [R package Bchron by Andrew Parnell](https://github.com/andrewcparnell/Bchron/blob/master/R/BchronCalibrate.R).
-- This algorithm can be run with a simple normal distribution ('NormalDist') or
-- Student's t-distribution ('StudentTDist'), which is recommended
| Bchron { distribution :: CalibrationDistribution }
deriving (Show, Eq)
-- | Statistical distributions to be used with the 'CalibrationMethod' 'Bchron'
data CalibrationDistribution =
-- | Normal distribution
NormalDist
-- | Student's t-distribution.
| StudentTDist {
ndf :: Double -- ^ number of degrees of freedom
}
deriving (Show, Eq)
-- | A type to represent years BP. All numbers are positive and describe the distance in years
-- to 1950AD: 3000 = 3000BP = 1050BC
type YearBP = Word
-- | A type to represent years BC or AD. Negative values describe years BC, positive values
-- years AD: -5000 = 5000BC and 1300 = 1300AD
type YearBCAD = Int
-- | A type to represent a range of years
type YearRange = Word
-- | A data type to represent an uncalibrated radiocarbon date
data UncalC14 = UncalC14 {
-- | Sample identifier, e.g. a lab number
_uncalC14Id :: String
-- | C14 age in years BP
, _uncalC14UnCal :: YearBP
-- | C14 standard deviation (one sigma in years)
, _uncalC14Sigma :: YearRange
} deriving (Show, Eq)
-- | A data type to represent a year-wise probability density for uncalibrated dates
-- Although technically not correct, we still call this a probability density function (PDF)
data UncalPDF = UncalPDF {
-- | Sample identifier, e.g. a lab number
_uncalPDFid :: String
-- | Years BP
, _uncalPDFUnCals :: VU.Vector YearBP
-- | Probability densities
, _uncalPDFDens :: VU.Vector Float
} deriving Show
-- | A data type to represent a calibration curve with 'YearBP'
data CalCurveBP = CalCurveBP {
-- | Years calBP
_calCurveBPCals :: VU.Vector YearBP
-- | Years BP
, _calCurveBPUnCals :: VU.Vector YearBP
-- | Standard deviation (one sigma in years)
, _calCurveBPSigmas :: VU.Vector YearRange
} deriving Show
-- | A second data type to represent a calibration curve, here now with 'YearBCAD'
data CalCurveBCAD = CalCurveBCAD {
-- | Years calBCAD
_calCurveBCADCals :: VU.Vector YearBCAD
-- | Years BCAD
, _calCurveBCADUnCals :: VU.Vector YearBCAD
-- | Standard deviation (one sigma in years)
, _calCurveBCADSigmas :: VU.Vector YearRange
} deriving Show
-- | A data type to represent a calibration curve in a /wide/ matrix form
data CalCurveMatrix = CalCurveMatrix {
-- | Row names of the calibration curve matrix: Years BCAD
_calCurveMatrixUnCals :: VU.Vector YearBCAD
-- | Column names of the calibration curve matrix: Years calBCAD
, _calCurveMatrixCals :: VU.Vector YearBCAD
-- | Matrix (as a list of columns) with the probability densities
, _calCurveMatrixDens :: V.Vector (VU.Vector Float)
} deriving Show
-- | A data type to represent a year-wise probability density for calibrated dates.
-- Although technically not correct, we still call this a probability density function (PDF)
data CalPDF = CalPDF {
-- | Sample identifier, e.g. a lab number
_calPDFid :: String
-- | Years calBCAD
, _calPDFCals :: VU.Vector YearBCAD
-- | Probability densities for each year in '_calPDFCals'
, _calPDFDens :: VU.Vector Float
} deriving (Show, Eq)
-- | A data type to represent an expression for sum- or product calibration
data CalExpr =
UnCalDate UncalC14
| CalDate CalPDF
| SumCal CalExpr CalExpr
| ProductCal CalExpr CalExpr
deriving Show
-- http://www.cse.chalmers.se/edu/year/2018/course/TDA452/lectures/RecursiveDataTypes.html
-- | A data type to represent a human readable summary of a calibrated radiocarbon date
data CalC14 = CalC14 {
-- | Identifier, e.g. a lab number
_calC14id :: String
-- | Summary of the range of the calibrated date
, _calC14RangeSummary :: CalRangeSummary
-- | One-sigma high density regions
, _calC14HDROneSigma :: [HDR]
-- | Two-sigma high density regions
, _calC14HDRTwoSigma :: [HDR]
} deriving Show
-- | A data type to store a simple range summary of the calibrated date, including
-- the median age
data CalRangeSummary = CalRangeSummary {
-- | Start of the two-sigma age range
_calRangeStartTwoSigma :: YearBCAD
-- | Start of the one-sigma age range
, _calRangeStartOneSigma :: YearBCAD
-- | Median age
, _calRangeMedian :: YearBCAD
-- | End of the one-sigma age range
, _calRangeStopOneSigma :: YearBCAD
-- | End of the two-sigma age range
, _calRangeStopTwoSigma :: YearBCAD
} deriving Show
-- | A data type to represent a high density region of a probability distribution.
-- A high density region is here defined as an age range, within which the respective
-- cummulative probability (e.g. of an calibrated radiocarbon date density curve)
-- is above a certain threshold
data HDR = HDR {
-- | Start of the high density region in years calBCAD
_hdrstart :: YearBCAD
-- | End of the high density region in years calBCAD
, _hdrstop :: YearBCAD
} deriving (Show, Eq)