Skip to content

Commit

Permalink
Merge pull request #94 from kartikmandar/Lightcurve_notebook_correction
Browse files Browse the repository at this point in the history
Lightcurve notebook correction
  • Loading branch information
matteobachetti authored Sep 10, 2024
2 parents a5f8221 + 93e02e7 commit b013a5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Lightcurve/Lightcurve tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
]
},
{
Expand Down Expand Up @@ -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)"
]
},
{
Expand Down Expand Up @@ -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."
]
},
{
Expand Down

0 comments on commit b013a5f

Please sign in to comment.