MCPcopy Create free account
hub / github.com/holoviz/hvplot / save

Method save

hvplot/ui.py:839–850  ·  view source on GitHub ↗

Save the plot to file. Calls the `holoviews.save` utility, refer to its documentation for a full description of the available kwargs. Parameters ---------- filename: string, pathlib.Path or IO object The path or BytesIO/StringIO object to save to

(self, filename, **kwargs)

Source from the content-addressed store, hash-verified

837 return args
838
839 def save(self, filename, **kwargs):
840 """Save the plot to file.
841
842 Calls the `holoviews.save` utility, refer to its documentation
843 for a full description of the available kwargs.
844
845 Parameters
846 ----------
847 filename: string, pathlib.Path or IO object
848 The path or BytesIO/StringIO object to save to
849 """
850 _hv.save(self._hvplot, filename, **kwargs)
851
852 def settings(self):
853 """Return a dictionary of the customized settings.

Callers 2

saveFunction · 0.80
test_explorer_saveFunction · 0.80

Calls

no outgoing calls

Tested by 1

test_explorer_saveFunction · 0.64