@@ -658,29 +658,26 @@ def modulate(self, f, k):
658658 fm *= np .sqrt (self .N )
659659 return fm
660660
661- def plot (self , ** kwargs ):
662- r"""Plot the graph.
663-
664- See :func:`pygsp.plotting.plot_graph`.
665- """
666- from pygsp import plotting
667- plotting .plot_graph (self , ** kwargs )
668-
669- def plot_signal (self , signal , ** kwargs ):
670- r"""Plot a signal on that graph.
671-
672- See :func:`pygsp.plotting.plot_signal`.
673- """
674- from pygsp import plotting
675- plotting .plot_signal (self , signal , ** kwargs )
676-
677- def plot_spectrogram (self , ** kwargs ):
678- r"""Plot the graph's spectrogram.
679-
680- See :func:`pygsp.plotting.plot_spectrogram`.
681- """
682- from pygsp import plotting
683- plotting .plot_spectrogram (self , ** kwargs )
661+ def plot (self , edges = None , backend = None , vertex_size = None , title = None ,
662+ save = None , ax = None ):
663+ r"""Docstring overloaded at import time."""
664+ from pygsp .plotting import _plot_graph
665+ _plot_graph (self , edges = edges , backend = backend ,
666+ vertex_size = vertex_size , title = title , save = save , ax = ax )
667+
668+ def plot_signal (self , signal , edges = None , vertex_size = None , highlight = [],
669+ colorbar = True , limits = None , backend = None , title = None ,
670+ save = None , ax = None ):
671+ r"""Docstring overloaded at import time."""
672+ from pygsp .plotting import _plot_signal
673+ _plot_signal (self , signal = signal , edges = edges , vertex_size = vertex_size ,
674+ highlight = highlight , colorbar = colorbar , limits = limits ,
675+ backend = backend , title = title , save = save , ax = ax )
676+
677+ def plot_spectrogram (self , node_idx = None ):
678+ r"""Docstring overloaded at import time."""
679+ from pygsp .plotting import _plot_spectrogram
680+ _plot_spectrogram (self , node_idx = node_idx )
684681
685682 def _fruchterman_reingold_layout (self , dim = 2 , k = None , pos = None , fixed = [],
686683 iterations = 50 , scale = 1.0 , center = None ,
0 commit comments