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
There are currently two methods of data output in plotypus.
We write a table summarizing the results to stdout, which has gotten rather hairy. If the -o/--output flag is given, we output a plot for each input file, in much the same format as that input.
This approach does not scale very well. #66 asks for an option to output the residuals to a file. We also output fitted light curves in the stdout table, but it would probably make more sense to output them in the same format as they are input, for input to other programs. Multiple periods also gives us issues with output.
What I suggest we do is abolish the -o/--output flag, and replace it with --output-plots. Then we can add other flags in the same manner, such as --output-residuals (to address #66), --output-fits (and remove fits from the output table), etc.
I'm going to go ahead and say we're definitely going to implement this feature, and the only matter up for debate is the naming convention for the flags. Any suggestions over the current ones?
The text was updated successfully, but these errors were encountered:
I'm now thinking that I prefer the naming convention --output-table-***** for tabular output, and --output-plot-***** for plot outputs. This allows us to have multiple kinds of plots, and an easy distinction between plot and data.
The existing -o/--output flag would therefore be replaced by --output-plot-lightcurve.
There are currently two methods of data output in plotypus.
We write a table summarizing the results to
stdout
, which has gotten rather hairy. If the-o/--output
flag is given, we output a plot for each input file, in much the same format as that input.This approach does not scale very well. #66 asks for an option to output the residuals to a file. We also output fitted light curves in the stdout table, but it would probably make more sense to output them in the same format as they are input, for input to other programs. Multiple periods also gives us issues with output.
What I suggest we do is abolish the
-o/--output
flag, and replace it with--output-plots
. Then we can add other flags in the same manner, such as--output-residuals
(to address #66),--output-fits
(and remove fits from the output table), etc.I'm going to go ahead and say we're definitely going to implement this feature, and the only matter up for debate is the naming convention for the flags. Any suggestions over the current ones?
The text was updated successfully, but these errors were encountered: