Display¶
-
class
neuxus.nodes.display.
Graz
(input_port)[source]¶ Display the Graz visualization in a new tk window
- Args:
input_port (Port): input marker signal
- Example:
Graz(port4)
-
class
neuxus.nodes.display.
Plot
(input_port, duration=10, channels='all', way='index')[source]¶ Display a signal (epoched or not) in a matplotlib window
- Args:
input_port (Port): input signal
duration (float): define the length of the observation segment
channels (str or list): if ‘all’, display all channels, else diplay specified channels according the way (index or name)
way (str): ‘name’ or ‘index’, specified the way to choose channels
- Example:
Plot(port4, duration=5)
-
class
neuxus.nodes.display.
PlotSpectrum
(input_port, channels='all', way='index')[source]¶ Display a spectrum signal in a matplotlib window
- Args:
input_port (Port): input signal of type ‘spectrum’
channels (str or list): if ‘all’, display all channels, else diplay specified channels according the way (index or name)
way (str): ‘name’ or ‘index’, specified the way to choose channels
- Example:
PlotSpectrum(port4)