-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
70 lines (49 loc) · 2.17 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# ArchaeoData
<!-- badges: start -->
[![R-CMD-check](https://github.com/ArchaeoStat/ArchaeoData/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ArchaeoStat/ArchaeoData/actions/workflows/R-CMD-check.yaml)
[![r-universe](https://archaeostat.r-universe.dev/badges/ArchaeoData)](https://archaeostat.r-universe.dev){.pkgdown-devel}
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
<!-- badges: end -->
## Overview
Datasets for chronological modelling with [**ArchaeoPhases**](https://github.com/ArchaeoStat/ArchaeoPhases). This package provides models and data to reproduce results from **ArchaeoPhases** examples and vignettes.
## Installation
The size of this package is considerably over the 5 MB limit imposed by CRAN.
You can install the latest version of **ArchaeoData** from [our repository](https://archaeostat.r-universe.dev) with:
```{r universe-installation, eval=FALSE}
install.packages("ArchaeoData", repos = "https://archaeostat.r-universe.dev")
```
And the development version from [GitHub](https://github.com/) with:
```{r gh-installation, eval=FALSE}
# install.packages("remotes")
remotes::install_github("ArchaeoStat/ArchaeoData")
```
## Local usage
```{r local}
## Load package
library(ArchaeoData)
## Load data (BCal output)
data("fishpond")
```
The `inst/` directory contains:
* [ChronoModel](http://www.chronomodel.fr) v2.0.18 project files and output files (in the `chronomodel/` subdirectory).
* [OxCal](https://c14.arch.ox.ac.uk/oxcal.html) v4.4.4 script and output files (in the `oxcal/` subdirectory).
* [BCal](https://bcal.shef.ac.uk) output files (in the `bcal/` subdirectory).
## Remote usage
```{r remote}
## Load package
library(ArchaeoPhases)
## Read BCal output
fishpond <- read_bcal("https://archaeostat.r-universe.dev/ArchaeoData/data/fishpond/csv")
```