You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It there a way to set the graph scales for the average spectrum and calibrated spectrum graphs produced by the plot method. I'm doing multiple scans along the galactic plane, and it would be helpful if all the graphs could be plotted at the same scale.
The text was updated successfully, but these errors were encountered:
There's no intended/supported way to do this. One thing you could try is to export everything as a CSV and pass the data through your own plotting software with custom axis limits.
Another thing you could perhaps try is to import matplotlib.pyplot as plt and set axN.set_ylim(...) (where N is the subplot index) around virgo.plot(), although I doubt this would work because axN.set_ylim() is part of the plot function in Virgo.
You also have the freedom to edit the source code of virgo.py in your system directly and set the limits manually if that helps.
It there a way to set the graph scales for the average spectrum and calibrated spectrum graphs produced by the plot method. I'm doing multiple scans along the galactic plane, and it would be helpful if all the graphs could be plotted at the same scale.
The text was updated successfully, but these errors were encountered: