I really want to work on EEG lab platform but this is the first time I'm trying it.Someone please help me on this issue
How to import .EEG or text or excel file to EEGlab
104 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi all I've 1-hour EEG data with a sampling frequency 291hz.I've installed EEGlab v14.1.1 version and tried to load my data files of '.EEG file','text' and 'excel'formats, but none of them are loading to EEGlab.It's showing the following error. Please help me to slove this issue since I'm new to this EEGlab software
3 commentaires
RITIKA JAIN
le 25 Déc 2020
Hi, what is the EEG system you used for this data acquisition? Based on that there are import extensions avaliable in EEGLAB that you can install and then import your data. It should work provided the EEG system is listed there.
Hope it helps!
Thanks
Réponses (6)
Walter Roberson
le 26 Nov 2017
Do not use "load" with a .eeg file. See https://sccn.ucsd.edu/wiki/Chapter_01:_Loading_Data_in_EEGLAB#Opening_an_existing_dataset
2 commentaires
Walter Roberson
le 27 Nov 2017
Each .EEG file has data for multiple times and multiple electrodes. That form is allowing you to chose to extract only the part of the information you are interested in.
I am not familiar with some of those terms; I have not done EEG work myself.
Hongshuai Sun
le 28 Oct 2019
I am a novice in eeg signal processing. At present, I have a .EEG file. Did you successfully read this kind of file in MATLAB? This is my E-mail address, looking forward to communicating with you.
sunhongshuai@stu.xjtu.edu.cn
0 commentaires
Alessandra Caporale
le 3 Août 2020
Good morning,
I have the same issue. Has anybody understood how to correctly import an .eeg file in EEGlab? I downloaded a specific plugin, nevertheless the info extracted from the .eeg file do not seem to make sense.
Thank you in advance,
Alessandra
2 commentaires
Walter Roberson
le 5 Août 2020
https://github.com/sccn/neuroscanio appears to be the plug-in needed for Neuroscan .eeg files for EEGLab .
I am not clear as to whether those files are a different format than BrainVision .eeg files; https://www.researchgate.net/post/Wondering_how_to_import_Brain_Vision_Data_into_EEGlab
Alessandra Caporale
le 5 Août 2020
Thank you for your suggestion!
I managed to import the .eeg file using: FILE > IMPORT DATA > USING THE BIOSIG INTERFACE.
Raul Huarote
le 23 Fév 2022
Saludos . Agradezco me puedan apoyar. Estoy en eeglab y deseo abrir un archivo .eeg, y me aparece una ventana "Load an EEG dataset" con 5 cajas de texto, me podrian decir que valores o que rango le debo colocar, para visualizar e iniciar a trabajar. Gracias de antemano por su respuesta.
1 commentaire
nuradrina
le 10 Mai 2023
Hi, I've EEG data in excel format since it automatically generated format as I'm using EMOTIV EPOC-X headset. My sampling rate is 128Hz and been trying to load my data into EEGlab but it keep showing error. Please help me how to solve this issue since I'm still a student and new to EEGlab software.
0 commentaires
Umar
le 2 Sep 2024
Modifié(e) : Walter Roberson
le 3 Sep 2024
Hi @Ceethal Kottakali Piyus,
After going through tutorials listed on the weblinks below.
Here is how to resolve the issue of loading your EEG data into EEGLAB,
*File Format Compatibility*
Make sure that your data files are in a format that EEGLAB can recognize. While EEGLAB can read various formats, the most compatible are .set (EEGLAB's native format) and .fdt for raw data. The formats you mentioned (.EEG, text, and excel) may not be directly supported without preprocessing.
*Using the Correct Loading Function*
The function pop_loadset is typically used to load .set files. If your files are not in this format, they will need to be converted or imported from ASCII/float files or MATLAB arrays. For your specific file types, here’s how to proceed. For .EEG files: If your .EEG files are in a specific format (e.g., from a particular EEG system), check if there is a specific EEGLAB plugin available for that format.
For text or Excel files: You can import these by converting them to an ASCII format. Make sure that the data is organized such that the first row contains channel names and subsequent rows contain the corresponding data.
*Importing Data*
If you are starting from text or Excel files, use the following steps:
Convert your data: Save your Excel file as a .csv or plain text file, making sure the data is organized correctly. Use MATLAB commands to load the data:
mydata = load('your_file.txt'); % for ASCII files
% or
mydata = readtable('your_file.csv'); % for CSV files
Make sure the data matrix is in the correct format (channels x samples).
Import into EEGLAB: Use File → Import data→From ASCII/float file or From MATLAB array, depending on your data's current format.
If an error persists, check the MATLAB command window for specific error messages. This could provide insights into whether it's a data format issue or a problem with the EEGLAB installation itself. Also, please familiarize yourself with the EEGLAB documentation, which is highly detailed and can provide further guidance on data import. You can access it via the EEGLAB interface or by typing help pop_loadset in MATLAB. Hope this answers your question.
0 commentaires
Voir également
Catégories
En savoir plus sur EEG/MEG/ECoG dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!