Utilities Class
utilities.RdThe `utilities` class is an S7 class designed to group utility functions that are not directly tied to other specific objects in the package. These include the functions `gentime`, `paringits`, `harmonicfit`, and `foldlc`.
Arguments
- times
A numeric vector storing the time points.
- series
A numeric vector representing the values of the time series.
- series_esd
A numeric vector representing the error standard deviations of the time series.
- times_phased
A numeric vector of phased times.
- series_phased
A numeric vector containing the time series values ordered by phase.
- series_esd_phased
A numeric vector containing the error standard deviations of the time series ordered by phase.
- fitted_values
A numeric vector containing the fitted values from the harmonic model.
- residuals
A numeric vector containing the residuals from the harmonic model.
- coef
A numeric vector containing the estimated coefficients of the harmonic model.
- summary
A summary object containing the harmonic model information.
- paired
Data Frame with the paired datasets.
Description
This class acts as a container for standalone methods that perform independent operations within the package. By grouping them under a single class, the package achieves better modularity and organization, facilitating maintenance and extensibility.