ramjet.photometric_database.light_curve¶
Code for a class to represent a light curve. See the contained class docstring for more details.
Module Contents¶
Classes¶
LightCurve |
A class to represent a light curve. A light curve is a collection of data which may includes times, fluxes, |
-
class
LightCurve[source]¶ Bases:
abc.ABCA class to represent a light curve. A light curve is a collection of data which may includes times, fluxes, flux errors, and related values.
-
fluxes:np.ndarray¶ The fluxes of the light curve.
Returns: The fluxes.
-
times:np.ndarray¶ The times of the light curve.
Returns: The times.
-
convert_column_to_relative_scale(self, column_name: str)[source]¶ Converts a column to relative scale.
Parameters: column_name – The name of the column to be converted.
-