From 1505bda160e1e18c024463737ca0b33697fd8fdd Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Wed, 23 Dec 2015 22:16:30 -0500 Subject: [PATCH] FIX: Fix docs --- doc/whats_new.rst | 46 +++++++++++++++++------ examples/datasets/plot_brainstorm_data.py | 3 +- 2 files changed, 37 insertions(+), 12 deletions(-) diff --git a/doc/whats_new.rst b/doc/whats_new.rst index 5e9c126363b..643a4e61940 100644 --- a/doc/whats_new.rst +++ b/doc/whats_new.rst @@ -4,8 +4,10 @@ What's new Note, we are now using links to highlight new functions and classes. Please be sure to follow the examples below like :func:`mne.stats.f_mway_rm`, so the whats_new page will have a link to the function/class documentation. -Current -------- +.. _changes_0_11: + +Version 0.11 +------------ Changelog ~~~~~~~~~ @@ -70,6 +72,28 @@ API - :class:`mne.EpochsArray` no longer has an average EEG reference silently added (but not applied to the data) by default. Use :func:`mne.EpochsArray.add_eeg_average_proj` to properly add one. +Authors +~~~~~~~ + +The committer list for this release is the following (preceded by number of commits): + + 171 Eric Larson + 117 Jaakko Leppakangas + 58 Jona Sassenhagen + 52 Mainak Jas + 46 Alexandre Gramfort + 33 Denis A. Engemann + 28 Teon Brooks + 24 Clemens Brunner + 23 Christian Brodbeck + 15 Mark Wronkiewicz + 10 Jean-Remi King + 5 Marijn van Vliet + 3 Fede Raimondo + 2 Alexander Rudiuk + 2 emilyps14 + 2 lennyvarghese + 1 Marian Dovgialo .. _changes_0_10: @@ -186,7 +210,7 @@ API - ``RawBrainVision`` objects now always have event channel ``'STI 014'``, and recordings with no events will have this channel set to zero by `Eric Larson`_ Authors -~~~~~~~~~ +~~~~~~~ The committer list for this release is the following (preceded by number of commits): @@ -420,7 +444,7 @@ API - Add ``montage`` parameter to the ``create_info`` function to create the info using montages by `Teon Brooks`_ Authors -~~~~~~~~~ +~~~~~~~ The committer list for this release is the following (preceded by number of commits): @@ -620,7 +644,7 @@ API - As default, for ICA the maximum number of PCA components equals the number of channels passed. The number of PCA components used to reconstruct the sensor space signals now defaults to the maximum number of PCA components estimated. Authors -~~~~~~~~~ +~~~~~~~ The committer list for this release is the following (preceded by number of commits): @@ -766,7 +790,7 @@ API Authors -~~~~~~~~~ +~~~~~~~ The committer list for this release is the following (preceded by number of commits): @@ -929,7 +953,7 @@ API - Remove artifacts module. Artifacts- and preprocessing related functions can now be found in mne.preprocessing. Authors -~~~~~~~~~ +~~~~~~~ The committer list for this release is the following (preceded by number of commits): @@ -1063,7 +1087,7 @@ API - Epochs objects now also take dicts as values for the event_id argument. They now can represent multiple conditions. Authors -~~~~~~~~~ +~~~~~~~ The committer list for this release is the following (preceded by number of commits): @@ -1119,7 +1143,7 @@ Changelog - Add method to eliminate stimulation artifacts from raw data by linear interpolation or windowing by `Daniel Strohmeier`_. Authors -~~~~~~~~~ +~~~~~~~ The committer list for this release is the following (preceded by number of commits): @@ -1164,7 +1188,7 @@ Changelog - New tutorial in the documentation and new classes and functions reference page by `Alex Gramfort`_. Authors -~~~~~~~~~ +~~~~~~~ The committer list for this release is the following (preceded by number of commits): @@ -1201,7 +1225,7 @@ version 0.1: - New return values for the function find_ecg_events Authors -~~~~~~~~~ +~~~~~~~ The committer list for this release is the following (preceded by number of commits): diff --git a/examples/datasets/plot_brainstorm_data.py b/examples/datasets/plot_brainstorm_data.py index eca74535923..08f0bcdb903 100644 --- a/examples/datasets/plot_brainstorm_data.py +++ b/examples/datasets/plot_brainstorm_data.py @@ -34,11 +34,12 @@ raw_fname = data_path + '/MEG/bst_raw/' + \ 'subj001_somatosensory_20111109_01_AUX-f_raw.fif' -raw = Raw(raw_fname, preload=True) +raw = Raw(raw_fname, preload=True, add_eeg_ref=False) raw.plot() # set EOG channel raw.set_channel_types({'EEG058': 'eog'}) +raw.add_eeg_average_proj() # show power line interference and remove it raw.plot_psd()