Visualization#

whobpyt.visualization.plot_fc(recording, skip_dur=500)[source]#

This function takes a Recording object and plots the functional connectivity based on its timeseries data.

Parameters: recording: Recording object containing the activity data. skip_dur: Initial transient duration to skip (in seconds).

whobpyt.visualization.plot_timeseries(recording, pop_label)[source]#

Takes a Recording object and plots the timeseries activity of a specific population.

Parameters: recording: Recording object containing the activity data. pop_label: String representing the population label.

whobpyt.visualization.plot_psd(recording, minFreq=2, maxFreq=40)[source]#

This function takes a Recording object and plots the power spectral density (PSD) based on its timeseries data.

Parameters: recording: Recording object containing the activity data. minFreq: Minimum frequency to plot (in Hz). maxFreq: Maximum frequency to plot (in Hz).