Is there a way to import EDF files into R?

I have European Data Format (EDF) files that I would like to import into R.

There are several Python libraries for parsing EDF files, and the EDF specification is available, so I know that this is possible, but I would not write code if I could.

Is there already a tool to import these files?

+3
source share
3 answers

I tried looking for the same a while ago, but I could not find anything for R. I ended up using biosig Python to convert edfs to ascii. There is also an edf2ascii converter.

+2
source
+4

I assume that when the question was asked there was no package, but now you can use edfReader :

https://cran.r-project.org/web/packages/edfReader/

https://github.com/Pisca46/edfReader

+1
source

Source: https://habr.com/ru/post/1791255/


All Articles