In #9241 there are lines like:
evoked_eeg_interp.data[evoked_eeg_interp.ch_names.index('EEG 004'), :]
We should have evoked.get_data like we have for epochs and raw so this can just become:
evoked_eeg_interp.get_data('EEG 004')
and become more API-consistent.
In #9241 there are lines like:
We should have
evoked.get_datalike we have for epochs and raw so this can just become:and become more API-consistent.