Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 696 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 696 Bytes

edf

edf is an R-package for reading physiologic data recorded in the European Data Format (EDF).

Installation

To install the edf package in R, proceed as follows in R.

First install the devtools-package and load it:

   install.packages("devtools")
   library(devtools)

You can now install the edf package:

   install_github("bwrc/edf")

Usage

To read data data recorded in the EDF format:

library(edf)
datafile <- "/tmp/signal.edf"
recording <- read.edf(datafile)

License

The edf R-package is licensed under the MIT-license.