read_bcal {ArchaeoPhases} | R Documentation |
Read BCal Output
Description
Reads MCMC output.
Usage
read_bcal(file, ...)
## S4 method for signature 'character'
read_bcal(file, bin_width = 1, calendar = BP())
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 |
bin_width |
The bin width specified for the BCal calibration. Defaults to the BCal default of 1. |
calendar |
A |
Value
An EventsMCMC
object.
Author(s)
T. S. Dye, N. Frerebeau
References
Buck C. E., Christen J. A. & James G. N. (1999). BCal: an on-line Bayesian radiocarbon calibration tool. Internet Archaeology, 7. doi:10.11141/ia.7.1.
See Also
Other read methods:
as_coda()
,
as_events()
,
as_phases()
,
check
,
read_chronomodel
,
read_oxcal()
Examples
if (requireNamespace("ArchaeoData", quietly = TRUE)) {
## Import BCal Output
path_output <- system.file("bcal/fishpond.csv", package = "ArchaeoData")
(bcal <- read_bcal(path_output))
}