I am presently in the process of learning how to utilize MNE for EEG analyses. My specific focus revolves around the comparison of single-channel EEG Power Spectral Density (PSD) between two distinct animal subjects. I employ MNE to import the EDF files, select a channel, extract the desired time segment, and then calculate the PSD.
Now, I would like to know how to effectively visualize and compare these PSD graphs by superimposing them within a single figure.
I think you can do spectrum1.add_channels([spectrum2]) and it will “just work” as long as the spectrum.info more or less matches (sampling freq, etc) and the respective ch_names do not collide. Note that this will modify spectrum1 in-place.