Core methods#

Hide code cell content
import pynapple as nap
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
custom_params = {"axes.spines.right": False, "axes.spines.top": False}
sns.set_theme(style="ticks", palette="colorblind", font_scale=1.5, rc=custom_params)

Time series method#

Hide code cell content
tsdframe = nap.TsdFrame(t=np.arange(100), d=np.random.randn(100, 3), columns=['a', 'b', 'c'])
group = {
    0: nap.Ts(t=np.sort(np.random.uniform(0, 100, 10))),
    1: nap.Ts(t=np.sort(np.random.uniform(0, 100, 20))),
    2: nap.Ts(t=np.sort(np.random.uniform(0, 100, 30))),
}
tsgroup = nap.TsGroup(group)
epochs = nap.IntervalSet([10, 65], [25, 80])
tsd = nap.Tsd(t=np.arange(0, 100, 1), d=np.sin(np.arange(0, 10, 0.1)))

restrict#

restrict is used to get time points within an IntervalSet. This method is available for TsGroup, Tsd, TsdFrame, TsdTensor and Ts objects.

tsdframe.restrict(epochs) 
Time (s)    a         b         c
----------  --------  --------  --------
10.0        0.70825   -0.18268  -0.1844
11.0        -0.18224  1.21083   0.37416
12.0        -0.30116  0.48198   -1.53791
13.0        0.33811   -0.34257  -0.05619
14.0        -0.20293  0.49446   0.11536
15.0        -1.62392  -1.74137  -0.79764
16.0        0.49074   0.20503   1.19549
...         ...       ...       ...
74.0        0.20107   0.97058   0.43615
75.0        1.54571   -1.46042  -0.37826
76.0        2.02398   -0.53257  0.11547
77.0        0.05746   0.71914   0.12356
78.0        0.82017   -1.62539  -1.58778
79.0        1.38121   -2.53743  -0.31808
80.0        -1.48989  0.40504   -0.14215
dtype: float64, shape: (32, 3)
Hide code cell source
plt.figure()
plt.plot(tsdframe.restrict(epochs))
[plt.axvspan(s, e, alpha=0.2) for s, e in epochs.values]
plt.xlabel("Time (s)")
plt.title("tsdframe.restrict(epochs)")
plt.xlim(0, 100)
plt.show()
../_images/90a6fdfc0b0f76c32f5703f606a77dde73c050ee445407349015e59d1739d177.png

This operation update the time support attribute accordingly.

print(epochs)
print(tsdframe.restrict(epochs).time_support) 
  index    start    end
      0       10     25
      1       65     80
shape: (2, 2), time unit: sec.
  index    start    end
      0       10     25
      1       65     80
shape: (2, 2), time unit: sec.

count#

count the number of timestamps within bins or epochs of an IntervalSet object. This method is available for TsGroup, Tsd, TsdFrame, TsdTensor and Ts objects.

With a defined bin size:

count1 = tsgroup.count(bin_size=1.0, time_units='s')
print(count1) 
Time (s)      0    1    2
------------  ---  ---  ---
0.931479414   0    2    0
1.931479414   0    0    0
2.931479414   0    0    0
3.931479414   0    1    0
4.931479414   0    0    0
5.931479414   0    0    0
6.931479414   0    0    1
...           ...  ...  ...
89.931479414  0    2    0
90.931479414  0    0    0
91.931479414  0    0    0
92.931479414  0    0    0
93.931479414  0    0    1
94.931479414  0    0    1
95.931479414  0    0    1
dtype: int64, shape: (96, 3)
Hide code cell source
plt.figure()
plt.plot(count1[:,2], 'o-')
plt.title("tsgroup.count(bin_size=1.0)")
plt.plot(tsgroup[2].fillna(-1), '|', markeredgewidth=2)
[plt.axvline(t, linewidth=0.5, alpha=0.5) for t in np.arange(0, 21)]
plt.xlabel("Time (s)")
plt.xlim(0, 20)
plt.show()
../_images/9ffe147d36cb3cd25430d77cfabb96a4d369a418c711547d6d15aff5b3810a79.png

With an IntervalSet:

count_ep = tsgroup.count(ep=epochs)

print(count_ep)
Time (s)      0    1    2
----------  ---  ---  ---
17.5          4    4    1
72.5          1    0    5
dtype: int64, shape: (2, 3)

bin_average#

bin_average downsample time series by averaging data point falling within a bin. This method is available for Tsd, TsdFrame and TsdTensor.

tsdframe.bin_average(3.5)
Time (s)    a         b         c
----------  --------  --------  --------
1.75        0.33815   0.69951   -0.64551
5.25        -0.17259  -0.69555  -0.64325
8.75        -0.18409  -0.48298  0.26181
12.25       -0.04843  0.45008   -0.40664
15.75       -0.07922  -0.21262  -0.26068
19.25       -0.3249   0.01312   0.75456
22.75       -0.40964  0.69726   0.31148
...         ...       ...       ...
75.25       1.25692   -0.3408   0.05779
78.75       0.19224   -0.75966  -0.48111
82.25       0.04067   -0.5011   -0.13267
85.75       -0.05161  -0.11956  -0.11287
89.25       0.34047   0.19961   -0.18501
92.75       0.03186   0.11329   0.15602
96.25       -0.83909  0.15589   -0.02812
dtype: float64, shape: (28, 3)
Hide code cell source
bin_size = 3.5
plt.figure()
plt.plot(tsdframe[:,0], '.--', label="tsdframe[:,0]")
plt.plot(tsdframe[:,0].bin_average(bin_size), 'o-', label="new_tsdframe[:,0]")
plt.title(f"tsdframe.bin_average(bin_size={bin_size})")
[plt.axvline(t, linewidth=0.5, alpha=0.5) for t in np.arange(0, 21,bin_size)]
plt.xlabel("Time (s)")
plt.xlim(0, 20)
plt.legend(bbox_to_anchor=(1.0, 0.5, 0.5, 0.5))
plt.show()
../_images/a3590b461f572f21b6a12b3b2c92c720a52fd271241c1003becc82fc340d79ee.png

interpolate#

Theinterpolate method of Tsd, TsdFrame and TsdTensor can be used to fill gaps in a time series. It is a wrapper of numpy.interp.

Hide code cell content
tsd = nap.Tsd(t=np.arange(0, 25, 5), d=np.random.randn(5))
ts = nap.Ts(t=np.arange(0, 21, 1))
new_tsd = tsd.interpolate(ts)
Hide code cell source
plt.figure()
plt.plot(new_tsd, '.-', label="new_tsd")
plt.plot(tsd, 'o', label="tsd")
plt.plot(ts.fillna(0), '+', label="ts")
plt.title("tsd.interpolate(ts)")
plt.xlabel("Time (s)")
plt.legend(bbox_to_anchor=(1.0, 0.5, 0.5, 0.5))
plt.show()
../_images/7adda4049028f9d3a838226c7ba329bf9399cc50a85b797258fbd1b838ecbdf5.png

value_from#

By default, value_from assign to timestamps the closest value in time from another time series. Let’s define the time series we want to assign values from.

For every timestamps in tsgroup, we want to assign the closest value in time from tsd.

Hide code cell content
tsd = nap.Tsd(t=np.arange(0, 100, 1), d=np.sin(np.arange(0, 10, 0.1)))
tsgroup_from_tsd = tsgroup.value_from(tsd)

We can display the first element of tsgroup and tsgroup_sin.

Hide code cell source
plt.figure()
plt.plot(tsgroup[0].fillna(0), "|", label="tsgroup[0]", markersize=20, mew=3)
plt.plot(tsd, linewidth=2, label="tsd")
plt.plot(tsgroup_from_tsd[0], "o", label = "tsgroup_from_tsd[0]", markersize=20)
plt.title("tsgroup.value_from(tsd)")
plt.xlabel("Time (s)")
plt.yticks([-1, 0, 1])
plt.legend(bbox_to_anchor=(1.0, 0.5, 0.5, 0.5))
plt.show()
../_images/431d7c6c138ff5f68d0f3b1d660bfe41c0199ed39f6595e4ab852f6387e2bee8.png

The argument mode can control if the nearest target time is taken before or after the reference time.

Hide code cell content
tsd = nap.Tsd(t=np.arange(0, 10, 1), d=np.arange(0, 100, 10))
ts = nap.Ts(t=np.arange(0.5, 9, 1))

In this case, the variable ts receive data from the time point before.

new_ts_before = ts.value_from(tsd, mode="before")
Hide code cell source
plt.figure()
plt.plot(ts.fillna(-1), "|", label="ts", markersize=20, mew=3)
plt.plot(tsd, "*-", linewidth=2, label="tsd")
plt.plot(new_ts_before, "o-", label = "new_ts_before", markersize=10)
plt.title("ts.value_from(tsd, mode='before')")
plt.xlabel("Time (s)")
plt.legend(bbox_to_anchor=(1.0, 0.5, 0.5, 0.5))
plt.show()
../_images/fd340e8fa0daadf9d8a9a37fb9f7564755a1ad9dcf9f458fee7794abebf29fa2.png
Hide code cell source
new_ts_after = ts.value_from(tsd, mode="after")
plt.figure()
plt.plot(ts.fillna(-1), "|", label="ts", markersize=20, mew=3)
plt.plot(tsd, "*-", linewidth=2, label="tsd")
plt.plot(new_ts_after, "o-", label = "new_ts_after", markersize=10)
plt.title("ts.value_from(tsd, mode='after')")
plt.xlabel("Time (s)")
plt.legend(bbox_to_anchor=(1.0, 0.5, 0.5, 0.5))
plt.show()
../_images/4e071d63f18263a5d5a0e3a5947801aa37f44e425b44696f80254d8685e8050a.png

If there is no time point found before or after or within the interval, the function assigns Nans.

tsd = nap.Tsd(t=np.arange(1, 10, 1), d=np.arange(10, 100, 10))
ep = nap.IntervalSet(start=0, end = 10)
ts = nap.Ts(t=[0, 9])

# First ts is at 0s. First tsd is at 1s.
ts.value_from(tsd, ep=ep, mode="before")
Time (s)
----------  ---
0           nan
9            90
dtype: float64, shape: (2,)

threshold#

The method threshold of Tsd returns a new Tsd with all the data above or below a certain threshold. Default is above. The time support of the new Tsd object get updated accordingly.

Hide code cell content
tsd = nap.Tsd(t=np.arange(0, 100, 1), d=np.sin(np.arange(0, 10, 0.1)))
tsd_above = tsd.threshold(0.5, method='above')

This method can be used to isolate epochs for which a signal is above/below a certain threshold.

epoch_above = tsd_above.time_support
Hide code cell source
plt.figure()
plt.plot(tsd, label="tsd")
plt.plot(tsd_above, 'o-', label="tsd_above")
[plt.axvspan(s, e, alpha=0.2) for s, e in epoch_above.values]
plt.axhline(0.5, linewidth=0.5, color='grey')
plt.legend()
plt.xlabel("Time (s)")
plt.title("tsd.threshold(0.5)")
plt.show()
../_images/b3d40016c80e072e2075d90af8784bb7e7ea526b2bbf051f96be581899787e8c.png

to_trial_tensor#

Tsd, TsdFrame, and TsdTensor all have the method to_trial_tensor, which creates a numpy array from an IntervalSet by slicing the time series. The resulting tensor has shape (shape of time series, number of trials, number of time points), where the first dimension(s) is dependent on the object.

ep = nap.IntervalSet([0, 10, 30, 50], metadata={'trials':[1, 2]})
print(tsgroup, "\n", ep)
  Index     rate
-------  -------
      0  0.10463
      1  0.20926
      2  0.3139 
   index    start    end    trials
      0        0     10         1
      1       30     50         2
shape: (2, 2), time unit: sec.

The following example returns a tensor with shape (2, 21), for 2 trials and 21 time points, where the first dimension is dropped due to this being a Tsd object.

tensor = tsd.to_trial_tensor(ep)
print(tensor, "\n")
print("Tensor shape = ", tensor.shape)
[[ 0.          0.09983342  0.19866933  0.29552021  0.38941834  0.47942554
   0.56464247  0.64421769  0.71735609  0.78332691  0.84147098         nan
          nan         nan         nan         nan         nan         nan
          nan         nan         nan]
 [ 0.14112001  0.04158066 -0.05837414 -0.15774569 -0.2555411  -0.35078323
  -0.44252044 -0.52983614 -0.61185789 -0.68776616 -0.7568025  -0.81827711
  -0.87157577 -0.91616594 -0.95160207 -0.97753012 -0.993691   -0.99992326
  -0.99616461 -0.98245261 -0.95892427]] 

Tensor shape =  (2, 21)

Since trial 2 is twice as long as trial 1, the array is padded with NaNs. The padding value can be changed by setting the parameter padding_value.

tensor = tsd.to_trial_tensor(ep, padding_value=-1)
print(tensor, "\n")
print("Tensor shape = ", tensor.shape)
[[ 0.          0.09983342  0.19866933  0.29552021  0.38941834  0.47942554
   0.56464247  0.64421769  0.71735609  0.78332691  0.84147098 -1.
  -1.         -1.         -1.         -1.         -1.         -1.
  -1.         -1.         -1.        ]
 [ 0.14112001  0.04158066 -0.05837414 -0.15774569 -0.2555411  -0.35078323
  -0.44252044 -0.52983614 -0.61185789 -0.68776616 -0.7568025  -0.81827711
  -0.87157577 -0.91616594 -0.95160207 -0.97753012 -0.993691   -0.99992326
  -0.99616461 -0.98245261 -0.95892427]] 

Tensor shape =  (2, 21)

By default, time series are aligned to the start of each trial. To align the time series to the end of each trial, the optional parameter align can be set to “end”.

tensor = tsd.to_trial_tensor(ep, align="end")
print(tensor, "\n")
print("Tensor shape = ", tensor.shape)
[[        nan         nan         nan         nan         nan         nan
          nan         nan         nan         nan  0.          0.09983342
   0.19866933  0.29552021  0.38941834  0.47942554  0.56464247  0.64421769
   0.71735609  0.78332691  0.84147098]
 [ 0.14112001  0.04158066 -0.05837414 -0.15774569 -0.2555411  -0.35078323
  -0.44252044 -0.52983614 -0.61185789 -0.68776616 -0.7568025  -0.81827711
  -0.87157577 -0.91616594 -0.95160207 -0.97753012 -0.993691   -0.99992326
  -0.99616461 -0.98245261 -0.95892427]] 

Tensor shape =  (2, 21)

trial_count#

TsGroup and Ts objects each have the method trial_count, which builds a trial-based count tensor from an IntervalSet object. Similar to count, this function requires a bin_size parameter which determines the number of time bins within each trial. The resulting tensor has shape (number of group elements, number of trials, number of time bins) for TsGroup objects, or (number of trials, number of time bins) for Ts objects.

tensor = tsgroup.trial_count(ep, bin_size=1)
print(tensor, "\n")
print("Tensor shape = ", tensor.shape)
[[[ 0.  0.  0.  0.  0.  0.  0.  0.  0.  0. nan nan nan nan nan nan nan
   nan nan nan]
  [ 0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  1.  0.
    0.  0.  0.]]

 [[ 1.  1.  0.  1.  0.  0.  0.  0.  0.  0. nan nan nan nan nan nan nan
   nan nan nan]
  [ 0.  0.  0.  2.  0.  1.  0.  0.  1.  0.  0.  0.  0.  0.  0.  0.  0.
    0.  0.  1.]]

 [[ 0.  0.  0.  0.  0.  0.  1.  0.  0.  1. nan nan nan nan nan nan nan
   nan nan nan]
  [ 0.  0.  0.  1.  0.  1.  2.  0.  0.  1.  0.  0.  0.  0.  0.  0.  0.
    1.  0.  0.]]] 

Tensor shape =  (3, 2, 20)

Similar to to_trial_tensor, the array is padded with NaNs when the trials have uneven durations, where the padding value can be controled using the parameter padding_value. Additionally, the parameter align can change whether the count is aligned to the “start” or “end” of each trial.

tensor = tsgroup.trial_count(ep, bin_size=1, align="end", padding_value=-1)
print(tensor, "\n")
print("Tensor shape = ", tensor.shape)
[[[-1. -1. -1. -1. -1. -1. -1. -1. -1. -1.  0.  0.  0.  0.  0.  0.  0.
    0.  0.  0.]
  [ 0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  0.  1.  0.
    0.  0.  0.]]

 [[-1. -1. -1. -1. -1. -1. -1. -1. -1. -1.  1.  1.  0.  1.  0.  0.  0.
    0.  0.  0.]
  [ 0.  0.  0.  2.  0.  1.  0.  0.  1.  0.  0.  0.  0.  0.  0.  0.  0.
    0.  0.  1.]]

 [[-1. -1. -1. -1. -1. -1. -1. -1. -1. -1.  0.  0.  0.  0.  0.  0.  1.
    0.  0.  1.]
  [ 0.  0.  0.  1.  0.  1.  2.  0.  0.  1.  0.  0.  0.  0.  0.  0.  0.
    1.  0.  0.]]] 

Tensor shape =  (3, 2, 20)

Mapping between TsGroup and Tsd#

It’s is possible to transform a TsGroup to Tsd with the method to_tsd and a Tsd to TsGroup with the method to_tsgroup.

This is useful to flatten the activity of a population in a single array.

tsd = tsgroup.to_tsd()

print(tsd)
Time (s)
------------  --
0.431479414    1
1.156208469    1
3.695136947    1
6.933473982    2
9.494146121    2
13.864922466   0
14.058379241   1
...
88.962745623   0
89.330820427   2
89.955996217   1
90.095824292   1
93.910710428   2
95.254919157   2
96.00468471    2
dtype: float64, shape: (60,)

The object tsd contains all the timestamps of the tsgroup with the associated value being the index of the unit in the TsGroup.

The method to_tsgroup converts the Tsd object back to the original TsGroup.

back_to_tsgroup = tsd.to_tsgroup()

print(back_to_tsgroup)
  Index     rate
-------  -------
      0  0.10463
      1  0.20926
      2  0.3139

Parameterizing a raster#

The method to_tsd makes it easier to display a raster plot. TsGroup object can be plotted with plt.plot(tsgroup.to_tsd(), 'o'). Timestamps can be mapped to any values passed directly to the method or by giving the name of a specific metadata name of the TsGroup.

tsgroup['label'] = np.arange(3)*np.pi

print(tsgroup)
  Index     rate    label
-------  -------  -------
      0  0.10463  0
      1  0.20926  3.14159
      2  0.3139   6.28319
Hide code cell source
plt.figure()
plt.subplot(2,2,1)
plt.plot(tsgroup.to_tsd(), '|')
plt.title("tsgroup.to_tsd()")
plt.xlabel("Time (s)")

plt.subplot(2,2,2)
plt.plot(tsgroup.to_tsd([10,20,30]), '|')
plt.title("togroup.to_tsd([10,20,30])")
plt.xlabel("Time (s)")

plt.subplot(2,2,3)
plt.plot(tsgroup.to_tsd("label"), '|')
plt.title("togroup.to_tsd('label')")
plt.xlabel("Time (s)")
plt.tight_layout()
plt.show()
../_images/9f183f32df8b2003f1976425d4accaa732aad566c915c902d06f5a38f100a202.png

Special slicing : TsdFrame#

For users that are familiar with pandas, TsdFrame is the closest object to a DataFrame. but there are distinctive behavior when slicing the object. TsdFrame behaves primarily like a numpy array. This section lists all the possible ways of slicing TsdFrame.

1. If not column labels are passed#

tsdframe = nap.TsdFrame(t=np.arange(4), d=np.random.randn(4,3))
print(tsdframe)
Time (s)           0         1         2
----------  --------  --------  --------
0            0.79919  -0.33774   0.90163
1            0.1409   -0.2262   -0.98256
2            0.87083  -0.37291  -1.1202
3           -1.21235   1.23899   0.69828
dtype: float64, shape: (4, 3)

Slicing should be done like numpy array :

tsdframe[0]
array([ 0.799191  , -0.33774305,  0.90162839])
tsdframe[:, 1]
Time (s)
----------  ---------
0           -0.337743
1           -0.226204
2           -0.372905
3            1.23899
dtype: float64, shape: (4,)
tsdframe[:, [0, 2]]
Time (s)           0         2
----------  --------  --------
0            0.79919   0.90163
1            0.1409   -0.98256
2            0.87083  -1.1202
3           -1.21235   0.69828
dtype: float64, shape: (4, 2)

2. If column labels are passed as integers#

The typical case is channel mapping. The order of the columns on disk are different from the order of the columns on the recording device it corresponds to.

tsdframe = nap.TsdFrame(t=np.arange(4), d=np.random.randn(4,4), columns = [3, 2, 0, 1])
print(tsdframe)
Time (s)          3         2         0         1
----------  -------  --------  --------  --------
0           0.05265   0.89403  -1.96182  -1.19018
1           1.02524   2.52288  -0.52087  -1.51368
2           0.24987   2.13965   0.20315  -1.0229
3           0.61282  -0.92809   0.50772  -0.72093
dtype: float64, shape: (4, 4)

In this case, indexing like numpy still has priority which can led to confusing behavior :

tsdframe[:, [0, 2]]
Time (s)          3         0
----------  -------  --------
0           0.05265  -1.96182
1           1.02524  -0.52087
2           0.24987   0.20315
3           0.61282   0.50772
dtype: float64, shape: (4, 2)

Note how this corresponds to column labels 3 and 0.

To slice using column labels only, the TsdFrame object has the loc method similar to Pandas :

tsdframe.loc[[0, 2]]
Time (s)           0         2
----------  --------  --------
0           -1.96182   0.89403
1           -0.52087   2.52288
2            0.20315   2.13965
3            0.50772  -0.92809
dtype: float64, shape: (4, 2)

In this case, this corresponds to columns labelled 0 and 2.

3. If column labels are passed as strings#

Similar to Pandas, it is possible to label columns using strings.

tsdframe = nap.TsdFrame(t=np.arange(4), d=np.random.randn(4,3), columns = ["kiwi", "banana", "tomato"])
print(tsdframe)
Time (s)        kiwi    banana    tomato
----------  --------  --------  --------
0            2.33115   0.42951   0.13403
1           -0.79828   0.14494  -0.71223
2           -1.71812  -1.68503  -0.20842
3            1.13762  -1.51712   0.82183
dtype: float64, shape: (4, 3)

When the column labels are all strings, it is possible to use either direct bracket indexing or using the loc method:

print(tsdframe['kiwi'])
print(tsdframe.loc['kiwi']) 
Time (s)
----------  ---------
0            2.33115
1           -0.798281
2           -1.71812
3            1.13762
dtype: float64, shape: (4,)
Time (s)
----------  ---------
0            2.33115
1           -0.798281
2           -1.71812
3            1.13762
dtype: float64, shape: (4,)

4. If column labels are mixed type#

It is possible to mix types in column names.

tsdframe = nap.TsdFrame(t=np.arange(4), d=np.random.randn(4,3), columns = ["kiwi", 0, np.pi])
print(tsdframe)
Time (s)        kiwi         0    3.141592653589793
----------  --------  --------  -------------------
0           -2.18839   1.43305             -0.91982
1           -0.16     -0.2349               0.87003
2           -0.60489   0.79556              1.52291
3           -0.41479  -0.25483             -0.97027
dtype: float64, shape: (4, 3)

Direct bracket indexing only works if the column label is a string.

print(tsdframe['kiwi'])
Time (s)
----------  ---------
0           -2.18839
1           -0.159998
2           -0.604889
3           -0.414794
dtype: float64, shape: (4,)

To slice with mixed types, it is best to use the loc method :

print(tsdframe.loc[['kiwi', np.pi]])
Time (s)        kiwi    3.141592653589793
----------  --------  -------------------
0           -2.18839             -0.91982
1           -0.16                 0.87003
2           -0.60489              1.52291
3           -0.41479             -0.97027
dtype: float64, shape: (4, 2)

In general, it is probably a bad idea to mix types when labelling columns.

Interval sets methods#

Interaction between epochs#

epoch1 = nap.IntervalSet(start=0, end=10)  # no time units passed. Default is us.
epoch2 = nap.IntervalSet(start=[5, 30], end=[20, 45])
print(epoch1, "\n")
print(epoch2, "\n")
  index    start    end
      0        0     10
shape: (1, 2), time unit: sec. 

  index    start    end
      0        5     20
      1       30     45
shape: (2, 2), time unit: sec. 

union#

epoch = epoch1.union(epoch2)
print(epoch)
  index    start    end
      0        0     20
      1       30     45
shape: (2, 2), time unit: sec.

intersect#

epoch = epoch1.intersect(epoch2)
print(epoch)
  index    start    end
      0        5     10
shape: (1, 2), time unit: sec.

set_diff#

epoch = epoch1.set_diff(epoch2)
print(epoch)
  index    start    end
      0        0      5
shape: (1, 2), time unit: sec.

split#

Useful for chunking time series, the split method splits an IntervalSet in a new IntervalSet based on the interval_size argument.

epoch = nap.IntervalSet(start=0, end=100)

print(epoch.split(10, time_units="s"))
  index    start    end
      0        0     10
      1       10     20
      2       20     30
      3       30     40
      4       40     50
      5       50     60
      6       60     70
      7       70     80
      8       80     90
      9       90    100
shape: (10, 2), time unit: sec.

Drop intervals#

epoch = nap.IntervalSet(start=[5, 30], end=[6, 45])
print(epoch)
  index    start    end
      0        5      6
      1       30     45
shape: (2, 2), time unit: sec.

drop_short_intervals#

print(
    epoch.drop_short_intervals(threshold=5)
    )
  index    start    end
      0       30     45
shape: (1, 2), time unit: sec.

drop_long_intervals#

print(
    epoch.drop_long_intervals(threshold=5)
    )
  index    start    end
      0        5      6
shape: (1, 2), time unit: sec.

merge_close_intervals#

Hide code cell source
epoch = nap.IntervalSet(start=[1, 7], end=[6, 45])
print(epoch)
  index    start    end
      0        1      6
      1        7     45
shape: (2, 2), time unit: sec.

If two intervals are closer than the threshold argument, they are merged.

print(
    epoch.merge_close_intervals(threshold=2.0)
    )
  index    start    end
      0        1     45
shape: (1, 2), time unit: sec.