diff --git a/Lightcurve/Lightcurve tutorial.ipynb b/Lightcurve/Lightcurve tutorial.ipynb index ba1c60b..51b91aa 100644 --- a/Lightcurve/Lightcurve tutorial.ipynb +++ b/Lightcurve/Lightcurve tutorial.ipynb @@ -1770,7 +1770,7 @@ "metadata": {}, "outputs": [], "source": [ - "start_times, stop_times, lc_sums = lc.analyze_lc_chunks(chunk_length = 10.0, func=np.median)" + "start_times, stop_times, lc_sums = lc.analyze_lc_chunks(segment_size = 10.0, func=np.median)" ] }, { @@ -1820,7 +1820,7 @@ "metadata": {}, "outputs": [], "source": [ - "start_times, stop_times, lc_result = lc.analyze_lc_chunks(chunk_length=10.0, func=myfunc)" + "start_times, stop_times, lc_result = lc.analyze_lc_chunks(segment_size=10.0, func=myfunc)" ] }, { @@ -1850,7 +1850,7 @@ "source": [ "## Compatibility with `Lightkurve`\n", "\n", - "The [`Lightkurve` package](https://docs.lightkurve.org) provides a large amount of complementary functionality to stingray, in particular for data observed with Kepler and TESS, stars and exoplanets, and unevenly sampled data. We have implemented a conversion method that converts to/from `stingray`'s native `Lightcurve` object and `Lightkurve`'s native `LightCurve` object. Equivalent functionality exists in `Lightkurve`, too. " + "The [`Lightkurve` package](https://docs.lightkurve.org) provides a large amount of complementary functionality to stingray, in particular for data observed with Kepler and TESS, stars and exoplanets, and unevenly sampled data. We have implemented a conversion method that converts to/from `stingray`'s native `Lightcurve` object and `Lightkurve`'s native `LightCurve` object. Equivalent functionality exists in `Lightkurve`, too. The users who have not installed Lightkurve package should do so first by running *pip install lightkurve* in their terminal and then following with the next command." ] }, {