-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
40 lines (29 loc) · 788 Bytes
/
README.Rmd
File metadata and controls
40 lines (29 loc) · 788 Bytes
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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# cmep
The `cmep` package can be used to read CMEP formatted files into R.
## Installation
You can install the development version of `cmep` from GitHub with:
```{r install, eval=FALSE}
remotes::install_github("ajholguin/cmep")
```
## Example
Read the sample file:
```{r example}
library(cmep)
f <- system.file("extdata", "cmep.dat", package = "cmep", mustWork = TRUE)
read_cmep(f)
```
## Related Work
There is a CMEP parser (https://github.com/craignicholson/cmepparser) developed
in Go, which formats the data as JSON.