as.data.frame | R Documentation |
Coerce to a Data Frame
## S4 method for signature 'CalibratedAges'
as.data.frame(x, ..., calendar = get_calendar())
## S4 method for signature 'CalibratedIntervals'
as.data.frame(x, ..., calendar = get_calendar())
## S4 method for signature 'RECE'
as.data.frame(x, ..., calendar = get_calendar())
## S4 method for signature 'ProxyRecord'
as.data.frame(x, ..., calendar = get_calendar())
x |
An object. |
... |
Currently not used. |
calendar |
An |
A data.frame
with an extra time
column.
N. Frerebeau
Other mutators:
as.list()
,
labels()
,
mutators
,
subset()
## Calibrate multiple dates
cal <- c14_calibrate(
values = c(5000, 4500),
errors = c(45, 35),
names = c("X", "Y")
)
head(as.data.frame(cal))
head(as.data.frame(cal, calendar = BP()))
head(as.data.frame(cal, calendar = NULL))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.