Skip to contents

Convert CSV to EDF

Usage

csv2edf(input, output, patient = NULL, recording = NULL)

Arguments

input

path to the input CSV file.

output

path to the output EDF file.

patient

patient name written to the EDF header.

recording

recording description written to the EDF header.

Value

invisibly returns the command exit status.

Examples

if (FALSE) { # \dontrun{
csv2edf(
  input = "signal.csv",
  output = "signal.edf"
)
} # }