Export#
Export plots and data from any viewer to various formats.
Overview#
This plugin allows exporting the plot in a given viewer to various image formats.
UI Access#
User API#
User API Example
See the Export user API documentation for more details.
import jdaviz as jd
import lcviz
from lightkurve import search_lightcurve
lc = search_lightcurve("HAT-P-11", mission="Kepler",
cadence="long", quarter=10).download().flatten()
jd.load(lc, format="Light Curve")
jd.show()
export = jd.plugins['Export']
export.export('test.png')
See also
- Jdaviz Export Plot
Jdaviz documentation on the Export plugin.