how to read many .vhdr files at a same time #225
-
I have preprocessed my data using BVA and obtained n (where n is the participant number) .vhdr files. The example in the vignette demonstrates how to read one .vhdr file. Is it possible to read and process multiple .vhdr files simultaneously? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ah, that's quite straightforward, you read all the files, put them in a list and then (If you find the package useful, please cite it in your paper). |
Beta Was this translation helpful? Give feedback.
Ah, that's quite straightforward, you read all the files, put them in a list and then
eeg_bind
them. See the short example in the help page of eeg_bind. I use thepurrr
package there but it can be done withlapply
or with just a for-loop.(If you find the package useful, please cite it in your paper).