Skip to content

Commit

Permalink
Merge pull request #12 from will-waalkes/wills_doc_updates
Browse files Browse the repository at this point in the history
Update mcmc.rst
  • Loading branch information
bmorris3 committed Jan 19, 2024
2 parents 05d5162 + b7b9c45 commit 067352d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/fleck/bayes/mcmc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ First, we import all of the required packages for this tutorial::
from astropy.timeseries import LombScargle
import astropy.units as u
import healpy as hp
from lightkurve import search_lightcurvefile
from lightkurve import search_lightcurve
from emcee import EnsembleSampler
from multiprocessing import Pool
from corner import corner
Expand All @@ -36,7 +36,7 @@ Next we resolve the target coordinates using astropy, and download its light
curve using ``lightkurve``'s handy method::

coord = SkyCoord.from_name('V1298 Tau')
slcf = search_lightcurvefile(coord, mission='K2')
slcf = search_lightcurve(coord, mission='K2')

lc = slcf.download_all()
pdcsap = lc.PDCSAP_FLUX.stitch()
Expand Down

0 comments on commit 067352d

Please sign in to comment.