Learn R Programming

StratPal (version 0.6.0)

gradient_from_data: gradient or taphonomic conditions from data

Description

Constructs a gradient or taphonomic conditions from a dataframe or list. If x is a dataframe, the first two columns are used, if x is a list the first two elements are used. The first entry is used as time/stratigraphic position, and the second as gradient/recovery probability.

Usage

gradient_from_data(x)

Value

a function for usage as gradient or taphonomic conditions, which can be passed to apply_taphonomy or apply_niche

Arguments

x

list or data frame

Examples

Run this code
# water depth 2 km offshore as gradient
t = scenarioA$t_myr
l = list(t, scenarioA$wd_m[,"2km"])
f = gradient_from_data(l)
plot(t, f(t), type = "l")

Run the code above in your browser using DataLab