Learn R Programming

admtools (version 0.4.0)

tp_to_adm: Construct age-depth model from tie points

Description

Turns tie points into an adm object that represents an age-depth model

Usage

tp_to_adm(t, h, T_unit = NULL, L_unit = NULL)

Value

object of class adm

Arguments

t

Vector, tie points in time

h

Vector, tie points in height

T_unit

character, time unit

L_unit

character, length unit

Details

by default, intervals with no sediment accumulation are marked as destructive. tp_to_adm does not check whether the inputs define a valid age-depth model. For this, use is_adm

See Also

is_adm() to check validity of adm objects, get_T_tp() and get_L_tp() to extract time and height/length tie points

Examples

Run this code

my_adm = tp_to_adm(t = 1:4, h = c(1,2,2,3), T_unit = "kyr", L_unit = "m")
plot(my_adm)
# see vignette("admtools") for other examples

 

Run the code above in your browser using DataLab