Skip to content

Commit

Permalink
update deprecation note in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
anilbey committed Jan 10, 2024
1 parent 43bf8b3 commit bc15caa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/source/eFeatures.rst
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ number of spikes in the trace, including outside of stimulus interval

spike_count = len(peak_indices)

**Note**: In the future this feature will be called "spike_count".
**Note**: "spike_count" is the new name for the feature "Spikecount".
"Spikecount", while still available, will be removed in the future.

`Python efeature`_ : spike_count_stimint
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand All @@ -175,7 +176,8 @@ number of spikes inside the stimulus interval
peaktimes_stimint = numpy.where((peak_time >= stim_start) & (peak_time <= stim_end))
spike_count_stimint = len(peaktimes_stimint)

**Note**: In the future this feature will be called "spike_count_stimint".
**Note**: "spike_count_stimint" is the new name for the feature "Spikecount_stimint".
"Spikecount_stimint", while still available, will be removed in the future.

`LibV5`_ : number_initial_spikes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit bc15caa

Please sign in to comment.