Sam Lee
Sam Lee
@ColinLittlefield I have worked on a side project that you might be interested in, or know someone who might be. The [project](https://github.com/orionlee/pht_eb_stats/blob/main/PilotResult.md) tries to identify a list of previously unknown...
Diagnosis: The phase of folded lightcurve is not normalized, and is still in the scale of days. E.g., if I change the period to 3 days, the phase will appear...
That make sense. I suppose then for `interact_bls()`, it should also display folded lightcurve with units as well. The current logic in #852 ends up a mix of normalized and...
I divide the response between 1. requirements / API changes needed for first release 2. implementation details ### Requirements / API changes 1. Changing cache directory: I don't think changing...
#### Analysis In the above LightCurve object, it seems to have some problem with calling `iloc` in the new LightCurve object (`lc1.iloc[:]`). The following codes fail with the `TypeError`: ```python...
@LucaNap It sounds like a different case. Could you file a new issue? Thanks!
Isolated to the underlying `TimeSeries` issue. See https://github.com/astropy/astropy/issues/11704
From https://github.com/astropy/astropy/issues/13200, it is discovered that `MaskedQuantity` does not work properly with `sigma_clip()` (the mask is ignored). I don't think it is an immediate problem in `lightcurve` context, but am...
keatonb: It'd be great if you could share your use case that does make use of `bottleneck` and masking provided by the new `MaskedQuantity` (i.e., a scenario where the bug...
Two possible workarounds that can be done in Lightkurve: 1. `LightCurve` objects use `Quantity` rather than `MaskedQuantity` for the columns, i.e., reverting back to Astropy 4.x behavior. I was not...