-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME.Rmd
56 lines (38 loc) · 2.09 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
---
title: oxcAAR README
author: Martin Hinz
output:
md_document:
variant: markdown_github
---
[![R build status](https://github.com/ISAAKiel/oxcAAR/workflows/R-CMD-check/badge.svg)](https://github.com/ISAAKiel/oxcAAR/actions) [![Coverage Status](https://img.shields.io/codecov/c/github/ISAAKiel/oxcAAR/master.svg)](https://codecov.io/github/ISAAKiel/oxcAAR?branch=master)
[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/oxcAAR)](https://CRAN.R-project.org/package=oxcAAR)
[![license](https://img.shields.io/badge/license-GPL%203-B50B82.svg)](https://www.R-project.org/Licenses/GPL-2)
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# oxcAAR
`oxcAAR` (previously named `roxcal`) is a collection of functions that can be used
to execute [OxCal](https://c14.arch.ox.ac.uk) from within R.
Please note that there is a [`roxcal` package](https://github.com/gavinsimpson/roxcal) package on GitHub, created by [Gavin Simpson](https://github.com/gavinsimpson). If you just need to import OxCal result files, you may consider using his package.
## License
`oxcAAR` is released under the [GNU General Public License, version 2](https://www.R-project.org/Licenses/GPL-2). Comments and feedback are welcome, as are code contributions.
## Installation
To install the stable version from [CRAN](https://CRAN.R-project.org):
install.packages('oxcAAR')
To install the latest development version:
if(!require('devtools')) install.packages('devtools')
library(devtools)
install_github('ISAAKiel/oxcAAR')
## Get started
To get started, just run:
```
quickSetupOxcal()
```
This will download and unzip [OxCal](https://c14.arch.ox.ac.uk/oxcal.html) into tempdir(). You can change the destination path of OxCal by setting the `path` parameter. Please make sure that you have a working internet connection when attempting to use this function!
Afterwards you can start calibrating your dates. Check the [Vignette](vignettes/basic-usage.Rmd) to learn how to do this.