| Name | Last modified | Size | Description | |
|---|---|---|---|---|
| Parent Directory | - | |||
| man/ | 2020-02-28 11:40 | - | ||
| README.html | 2020-02-28 11:40 | 6.1K | ||
beats reads, visualizes, and process ECG data from UFI devices.
# Install the development version from GitHub:
# install.packages("devtools")
devtools::install_github("FlukeAndFeather/beats")This example reads a binary UBE file and launches a Shiny app for finding heart beats.
# File path to sample data
fp <- system.file("extdata", "max_ecg_190826b.ube", package = "beats")
# Read ube file
ecg_data <- read_ube(fp)
# Launch GUI
heartbeats <- find_hr(ecg_data)
# In this heart rate profile, zoom into 12:53:20 - 12:54:25 to see actual beatsAfter identifying heart beats in ECG profile, you can create a GIF showing them in real time.
