-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #226 from pynapple-org/dev
Adding Event trigger average for all dimensions
- Loading branch information
Showing
18 changed files
with
201 additions
and
133 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
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,4 +1,4 @@ | ||
__version__ = "0.5.0" | ||
__version__ = "0.5.1" | ||
from .core import * | ||
from .io import * | ||
from .process import * |
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,3 +1,4 @@ | ||
from .interval_set import * | ||
from .time_series import * | ||
from .ts_group import * | ||
from .interval_set import IntervalSet | ||
from .time_index import TsIndex | ||
from .time_series import Ts, Tsd, TsdFrame, TsdTensor | ||
from .ts_group import TsGroup |
File renamed without changes.
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
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,5 +1,26 @@ | ||
from .correlograms import * | ||
from .decoding import * | ||
from .perievent import * | ||
from .randomize import * | ||
from .tuning_curves import * | ||
from .correlograms import ( | ||
compute_autocorrelogram, | ||
compute_crosscorrelogram, | ||
compute_eventcorrelogram, | ||
) | ||
from .decoding import decode_1d, decode_2d | ||
from .perievent import ( | ||
compute_event_trigger_average, | ||
compute_perievent, | ||
compute_perievent_continuous, | ||
) | ||
from .randomize import ( | ||
jitter_timestamps, | ||
resample_timestamps, | ||
shift_timestamps, | ||
shuffle_ts_intervals, | ||
) | ||
from .tuning_curves import ( | ||
compute_1d_mutual_info, | ||
compute_1d_tuning_curves, | ||
compute_1d_tuning_curves_continuous, | ||
compute_2d_mutual_info, | ||
compute_2d_tuning_curves, | ||
compute_2d_tuning_curves_continuous, | ||
compute_discrete_tuning_curves, | ||
) |
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
Oops, something went wrong.