Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 831 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 831 Bytes

empatica

empatica is an R-package for reading physiologic data recorded with an Empatica device.

Installation

To install the empatica 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 empatica package:

   install_github("bwrc/empatica-r")

Usage

  1. After having recorded some data with the Empatica device, upload the data normally to Empatica cloud service Empatica Connect.
  2. After this, download the data as a zip-file.
  3. To read data recorded using the Empatica, proceed as follows:
   library(empatica)
   datafile  <- "/tmp/my_empatica_data.zip"
   recording <- read.empatica(datafile)