Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: first stab at updating docs #138

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
master_doc = 'index'

# The language for content autogenerated by Sphinx.
language = None
language = 'en'

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand Down
8 changes: 4 additions & 4 deletions examples/plot_cluster_viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
# Let's first create the info object:

import mne
mntg = mne.channels.make_standard_montage('easycap-M1')
info = mne.create_info(mntg.ch_names, sfreq=250., ch_types='eeg')
info = info.set_montage(mntg)
montage = mne.channels.make_standard_montage('easycap-M1')
info = mne.create_info(montage.ch_names, sfreq=250., ch_types='eeg')
info = info.set_montage(montage)

###############################################################################
# Now we read the file.
Expand All @@ -42,7 +42,7 @@
# First let's plot the topography of the second cluster's effect in frequency
# range from 8 to 8.5 Hz:

topo = clst.plot(cluster_idx=1, freq=[8, 8.5])
topo = clst.plot(picks=1, freq=[8, 8.5])

###############################################################################
# We can also see how specific frequencies contribute to each cluster by the
Expand Down