-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding docs for release * Try again * Fix * Fix
- Loading branch information
Showing
7 changed files
with
97 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<div class="dropdown"> | ||
<button type="button" class="btn btn-{% if (build_dev_html|tobool) %}danger{% else %}primary{% endif %} btn-sm navbar-btn dropdown-toggle" id="dLabelMore" data-toggle="dropdown"> | ||
v{{ release }} | ||
<span class="caret"></span> | ||
</button> | ||
<div class="dropdown-menu list-group-flush py-0" aria-labelledby="dLabelMore"> | ||
{%- for ver, txt in versions_dropdown.items() %} | ||
<a class="list-group-item list-group-item-action py-1" href="https://mne.tools/mne-bids/{{ ver }}/index.html">{{ txt }}</a> | ||
{%- endfor %} | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
.. _Adam Li: https://github.com/adam2392 | ||
.. _Adam Li: https://github.com/adam2392 | ||
.. _Eric Larson: https://github.com/larsoner | ||
.. _Britta Westner: https://github.com/britta-wstnr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
:orphan: | ||
|
||
.. _whats_new_in_previous_releases: | ||
|
||
.. currentmodule:: mne_connectivity | ||
|
||
What was new in previous releases? | ||
================================== | ||
|
||
.. _changes_0_2: | ||
|
||
Version 0.2 (2021-09-07) | ||
------------------------ | ||
|
||
In this version, we return the relevant Connectivity class from each of the | ||
connectivity estimation functions. These internally use ``xarray`` to represent | ||
the connectivity data. One can easily get the v0.1 numpy array by doing | ||
``conn.get_data()``, which will get exactly the same output as one got in v0.1 | ||
running any of the connectivity functions. | ||
|
||
Changelog | ||
~~~~~~~~~ | ||
|
||
- Adding `Connectivity`, `TemporalConnectivity`, `SpectralConnectivity` and `SpectroTemporalConnectivity` as a data structure to hold connectivity data, by `Adam Li`_ (:gh:`6`) | ||
- Adding `EpochConnectivity`, `EpochTemporalConnectivity`, `EpochSpectralConnectivity` and `EpochSpectroTemporalConnectivity` as a data structure to hold connectivity data over Epochs, by `Adam Li`_ (:gh:`6`) | ||
- ``indices`` argument in Connectivity classes can now be ``symmetric``, allowing for memory-efficient storage of symmetric connectivity, by `Adam Li`_ (:gh:`20`) | ||
- New function ``save`` in Connectivity classes along with :func:`read_connectivity` can now be used to write and read Connectivity data as netCDF files, by `Adam Li`_ (:gh:`20`) | ||
- New function :func:`vector_auto_regression` to compute dynamic connectivity vector auto-regressive (VAR) model, by `Adam Li`_ (:gh:`23`) | ||
|
||
API | ||
~~~ | ||
|
||
- :func:`envelope_correlation`, :func:`spectral_connectivity`, and :func:`phase_slope_index` all return ``_Connectivity`` containers now, by `Adam Li`_ (:gh:`6`) | ||
- Added ``xarray`` as a dependency where all connectivity containers are now underlying xarrays, by `Adam Li`_ (:gh:`6`) | ||
- The ``combine`` argument in :func:`envelope_correlation` was removed, and now all Epoch Connectivity classes have a ``combine`` class function, by `Adam Li`_ (:gh:`20`) | ||
|
||
Authors | ||
~~~~~~~ | ||
|
||
People who contributed to this release (in alphabetical order): | ||
|
||
* `Adam Li`_ | ||
* `Eric Larson`_ | ||
* `Britta Westner`_ | ||
|
||
.. _changes_0_1: | ||
|
||
Version 0.1 (2021-06-25) | ||
------------------------ | ||
|
||
Changes when mne-connectivity was part of MNE-Python | ||
---------------------------------------------------- | ||
|
||
In July, 2021, ``mne.connectivity`` submodule was ported over from the MNE-Python | ||
repo into this repository, ``mne-connectivity`` as v0.1. Starting v0.24 of MNE-Python, that sub-module | ||
will be deprecated and development will move over into this repository. Starting v0.25 of MNE-Python, | ||
``mne.connectivity`` will completely be removed. | ||
|
||
Authors | ||
~~~~~~~ | ||
|
||
People who contributed to this release (in alphabetical order): | ||
|
||
* `Adam Li`_ | ||
|
||
.. include:: authors.inc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters