-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
executable file
·59 lines (45 loc) · 2.97 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
---
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%"
)
```
# EGM
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![CRAN status](https://www.r-pkg.org/badges/version/EGM)](https://CRAN.R-project.org/package=EGM)
[![](http://cranlogs.r-pkg.org/badges/grand-total/EGM?color=blue)](https://cran.r-project.org/package=EGM)
[![R-CMD-check](https://github.com/shah-in-boots/EGM/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/shah-in-boots/EGM/actions/workflows/R-CMD-check.yaml)
[![pkgdown](https://github.com/shah-in-boots/egm/actions/workflows/pkgdown.yaml/badge.svg)](https://github.com/shah-in-boots/egm/actions/workflows/pkgdown.yaml)
[![test-coverage](https://github.com/shah-in-boots/EGM/actions/workflows/test-coverage.yaml/badge.svg)](https://github.com/shah-in-boots/EGM/actions/workflows/test-coverage.yaml)
[![Codecov test coverage](https://codecov.io/gh/shah-in-boots/egm/branch/main/graph/badge.svg)](https://app.codecov.io/gh/shah-in-boots/egm?branch=main)
[![Github commit frequency](https://img.shields.io/github/commit-activity/w/shah-in-boots/EGM)](https://github.com/shah-in-boots/EGM/graphs/commit-activity)
<!-- badges: end -->
The purpose of `{EGM}` is to work with electrophysiology (EP) signal data to help understand and simplify the complexity of complex, multi-channel electrical signal data.
The target audience is those working, in particular, with *cardiac electrophysiology data*, from intracardiac electrograms to surface electrocardiography.
The package is heavily inspired by and gains additional functionality from the [Waveform Database (WFDB) software package](https://physionet.org/content/wfdb/10.7.0/).
The goals and major arms of this software are...
1. Adapt `WFDB`-compatible signal data to an `R` format that is interchangeable
1. Provide simple visualization tools to work with short elements of raw signal data
1. Allow for annotation of intracardiac electrograms in an interactive manner
1. Train and allow development of learning algorithms for the evaluation of multi-channel time series data
Please see the vignettes for further details on usage.
## Installation
You can install the released version of `{EGM}` from [CRAN](https://CRAN.R-project.org) with:
```{r, eval=FALSE}
install.packages("EGM")
```
And the development version from [GitHub](https://github.com/) with:
```{r, eval=FALSE}
# install.packages("devtools")
devtools::install_github("shah-in-boots/EGM")
```
Notably, the package software utilizes the WFDB software if it is available.
You can expect errors in calling commands until the software is appropriately installed.
Further installation instructions are available on the [Github site](https://github.com/bemoody/wfdb).