raw = mne.io.read_raw_fif(sample_data_raw_file)
events, event_id = mne.events_from_annotations(raw)
epochs = mne.Epochs(raw, events)
average = epochs.average()
times = average.times * 1e3
baseline_corrected = average.apply_function(fun = mne.baseline.rescale, times=epochs.times,
baseline=(-2.0, 0), mode='zscore')
Baseline adjustment went well. But is there a way to view each channel like when using raw.plot()? The last line of code returns mne.EvokedArray. How can I get filtered signal data other than evoked data for each channel?