plot_ar_i | R Documentation |
Requires an object returned by the tapas::pretreatment() function. Non-resampled accumulation rates are presented using grey bars. The re-sampled accumulation rates at equal sampling intervals are presented by a black curve. Modified from the plot.CHAR() function (paleofire v1.2.4 R package).
plot_ar_i(
x,
xlim = NULL,
ylim = NULL,
xlab = NULL,
ylab = NULL,
frame = TRUE,
main = NULL,
...
)
x |
An list returned by the tapas::pretreatment() function. |
xlim |
Optional. Determines the limits of the age scale.
By default ( |
ylim |
Optional. Determines the limits of the y-axis scale.
By default, |
xlab |
Optional. A character string specifying the units of the age scale.
By default |
ylab |
Optional. A character string specifying the units of the y-axis.
By default |
frame |
Logical. Determines if the plot is framed. By default,
|
main |
Optional. A character string specifying the main plot title. |
... |
... |
Olivier Blarquez
## Not run:
# Here, we use the charcoal record from Code Lake (Higuera et al., 2009)
# Load raw charcoal data:
co <- tapas::co_char_data
c <- co[, 6] # charcoal counts
p <- co[, 1:5] # CmTop, CmBot, AgeTop, AgeBot, Volume
# Calculate resampled charcoal accumulation rate (CHAR, as pieces cm-2 yr-1)
co_CHAR <- tapas::pretreatment(params = p, serie = c, Int = TRUE)
tapas::plot_ar_i(co_CHAR)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.