read_oxcal {ArchaeoPhases} | R Documentation |
Read OxCal Output
Description
Reads MCMC output.
Usage
read_oxcal(file, ...)
## S4 method for signature 'character'
read_oxcal(file, calendar = CE())
Arguments
file |
the name of the file which the data are to be read from.
Each row of the table appears as one line of the file. If it does
not contain an absolute path, the file name is
relative to the current working directory,
Alternatively,
|
... |
Further arguments to be passed to |
calendar |
A |
Value
An EventsMCMC
object.
Author(s)
T. S. Dye, N. Frerebeau
References
Bronk Ramsey, C. (2009). Bayesian Analysis of Radiocarbon Dates. Radiocarbon, 51(1), 337-360. doi:10.1017/S0033822200033865.
See Also
Other read methods:
as_coda()
,
as_events()
,
as_phases()
,
check
,
read_bcal()
,
read_chronomodel
Examples
if (requireNamespace("ArchaeoData", quietly = TRUE)) {
## Import OxCal Output
path <- "oxcal/ksarakil/"
path_output <- system.file(path, "MCMC_Sample.csv", package = "ArchaeoData")
(oxcal <- read_oxcal(path_output))
}