{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# An introduction into the tools and tutorials available for the analysis of TESS data\n", "\n", "Welcome everyone to this *TESS* Lightkurve tutorial!" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Authors\n", "\n", "[Rebekah Hounsell](https://heasarc.gsfc.nasa.gov/docs/tess/helpdesk.html) - Support scientist for *TESS* in the NASA GSFC GI Office. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Learning Goals\n", "\n", "In this tutorial, we will teach the user how to access, analyze, and manipulate data from the NASA Exoplanet mission *TESS* (this can also be applied to *Kepler* & *K2*). All tools presented will teach the user how to work with time series data for the purpose of scientific research. \n", "\n", "The tutorial assumes a basic knowledge of python and astronomy, and will walk the user through several of the concepts outlined below:\n", "\n", "1. How to obtain *TESS* data products from the MAST archive\n", "2. How to use *Lightkurve* to access the various data products and create time series\n", "3. How to analyze and assess various data anomalies and how you might visualize them" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Imports\n", "\n", "This tutorial requires the use of specific packages:\n", "- [**Lightkurve**](https://docs.lightkurve.org/index.html) to work with *TESS* data (v2.0.1)\n", "- [**Matplotlib**](https://matplotlib.org/) for plotting.\n", "- [**Numpy**](https://numpy.org) for manipulating the data." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import lightkurve as lk\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "%matplotlib inline" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### First time users\n", "\n", "If you are not that experienced with *Python*, or cannot download *Lightkurve*, you can run this notebook as a [Colab notebook](https://colab.research.google.com/notebooks/intro.ipynb?utm_source=scs-index). Colaboratory allows users to write and execute *Python* in your browser with zero configuration required. \n", "\n", "All you need is a Google account and to copy and paste in the following command at the top of your colab notebook:\n", "\n", "`!pip install lightkurve`\n", "\n", "This downloads the *Lightkurve* package." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Introduction to *TESS*: \n", "\n", "The *Transiting Exoplanet Survey Satellite (TESS)* is a NASA-sponsored Astrophysics Explorer-class mission that is performing a near all-sky survey to search for planets transiting nearby stars. *TESS* completed its primary mission in July of 2020, and has now entered its extended mission. The current extended mission will last until September 2022, and will continue to scan the sky for exoplanets and transient events. The *TESS* mission is now more community focused with a larger guest investigator (GI) program.\n", "\n", "Over the last three years *TESS* has observed both the northern and southern hemispheres, with each hemisphere being split into ~13 sectors. Each sector is observed for ~27 days by *TESS's* four cameras.\n", "\n", "The main data products collected by the *TESS* mission are described below. \n", "\n", "- [Full Frame Images (FFIs)](https://heasarc.gsfc.nasa.gov/docs/tess/data-products.html#full-frame-images): The full sector images, with a cadence of 30-min (years 1 & 2) or 10-min (years 3 & 4).\n", "- [Target Pixel Files (TPFs)](https://heasarc.gsfc.nasa.gov/docs/tess/data-products.html#target-pixel-files-tpfs): Postage stamp cut outs from the FFIs, focused on a selected target of interest. Each stamp has a cadence of 2-min or 20-sec. \n", "- [Light Curve Files (LCFs)](https://heasarc.gsfc.nasa.gov/docs/tess/data-products.html#light-curve-files): The time series data produced for each 2-min or 20-sec TPF object. \n", "\n", "To learn more about the *TESS* mission and its data products, please visit the [*TESS* GI pages](https://heasarc.gsfc.nasa.gov/docs/tess/data-products.html)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. How to obtain *TESS* data products from the MAST archive\n", "\n", "You can access *TESS*, *Kepler*, and *K2* data via the [ Mikulksi Archive for Space Telescopes (MAST)](https://mast.stsci.edu/portal/Mashup/Clients/Mast/Portal.html) archive or via the *Lightkurve* package (see Section 2).\n", "\n", "Here, we are focusing on obtaining your data via the MAST portal. Using the portal, you can enter the name of your object, its TIC number, or position (i.e., R.A and Dec). If listed in the archive, the table containing each observation will be returned." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. How to use *Lightkurve* to access the various data products and create a time series\n", "\n", "\n", "[*Lightkurve*](https://docs.lightkurve.org/tutorials/index.html) offers a user-friendly way to analyze time series data obtained by telescopes, in particular *NASA’s Kepler* and *TESS* exoplanet missions. You can search for the various data products for *TESS* on MAST using the following *Lightkurve* functions:\n", "\n", "- To look for your object in a full frame image: [`search_tesscut()`](https://docs.lightkurve.org/reference/api/lightkurve.search_tesscut.html?highlight=search_tesscut)\n", "\n", "- To look for target pixel files: [`search_targetpixelfile()`](https://docs.lightkurve.org/reference/api/lightkurve.search_targetpixelfile.html?highlight=search_targetpixelfile) \n", "\n", "- To obtain light curve files for your object of interest: [`search_lightcurve()`](https://docs.lightkurve.org/reference/api/lightkurve.search_lightcurve.html?highlight=search_lightcurve) \n", "\n", "For the purpose of this tutorial, we will be examining [L 98-59](https://arxiv.org/pdf/1903.08017.pdf), a bright M dwarf star at a distance of 10.6 pc. This star is host to three terrestrial-sized planets and is also known in the *TESS* system as TIC 307210830. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 2.1 Accessing the data products\n", "\n", "Let's go through each one of the above functions and see what data is available." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "search_ffi = lk.search_tesscut('L 98-59')\n", "search_tpf = lk.search_targetpixelfile('L 98-59')\n", "search_lcf = lk.search_lightcurve('L 98-59')" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/html": [ "SearchResult containing 15 data products.\n", "\n", "
# | mission | year | author | exptime | target_name | distance |
---|---|---|---|---|---|---|
s | arcsec | |||||
0 | TESS Sector 01 | 2018 | TESScut | 1426 | L 98-59 | 0.0 |
1 | TESS Sector 02 | 2018 | TESScut | 1426 | L 98-59 | 0.0 |
2 | TESS Sector 05 | 2018 | TESScut | 1426 | L 98-59 | 0.0 |
3 | TESS Sector 08 | 2019 | TESScut | 1426 | L 98-59 | 0.0 |
4 | TESS Sector 09 | 2019 | TESScut | 1426 | L 98-59 | 0.0 |
5 | TESS Sector 10 | 2019 | TESScut | 1426 | L 98-59 | 0.0 |
6 | TESS Sector 11 | 2019 | TESScut | 1426 | L 98-59 | 0.0 |
7 | TESS Sector 12 | 2019 | TESScut | 1426 | L 98-59 | 0.0 |
8 | TESS Sector 28 | 2020 | TESScut | 475 | L 98-59 | 0.0 |
9 | TESS Sector 29 | 2020 | TESScut | 475 | L 98-59 | 0.0 |
10 | TESS Sector 32 | 2020 | TESScut | 475 | L 98-59 | 0.0 |
11 | TESS Sector 35 | 2021 | TESScut | 475 | L 98-59 | 0.0 |
12 | TESS Sector 36 | 2021 | TESScut | 475 | L 98-59 | 0.0 |
13 | TESS Sector 37 | 2021 | TESScut | 475 | L 98-59 | 0.0 |
14 | TESS Sector 38 | 2021 | TESScut | 475 | L 98-59 | 0.0 |
# | mission | year | author | exptime | target_name | distance |
---|---|---|---|---|---|---|
s | arcsec | |||||
0 | TESS Sector 02 | 2018 | SPOC | 120 | 307210830 | 0.0 |
1 | TESS Sector 02 | 2018 | TESS-SPOC | 1800 | 307210830 | 0.0 |
2 | TESS Sector 05 | 2018 | SPOC | 120 | 307210830 | 0.0 |
3 | TESS Sector 05 | 2018 | TESS-SPOC | 1800 | 307210830 | 0.0 |
4 | TESS Sector 08 | 2019 | SPOC | 120 | 307210830 | 0.0 |
5 | TESS Sector 09 | 2019 | SPOC | 120 | 307210830 | 0.0 |
6 | TESS Sector 10 | 2019 | SPOC | 120 | 307210830 | 0.0 |
7 | TESS Sector 11 | 2019 | SPOC | 120 | 307210830 | 0.0 |
8 | TESS Sector 12 | 2019 | SPOC | 120 | 307210830 | 0.0 |
9 | TESS Sector 28 | 2020 | SPOC | 20 | 307210830 | 0.0 |
... | ... | ... | ... | ... | ... | ... |
18 | TESS Sector 35 | 2021 | SPOC | 20 | 307210830 | 0.0 |
19 | TESS Sector 35 | 2021 | SPOC | 120 | 307210830 | 0.0 |
20 | TESS Sector 36 | 2021 | SPOC | 20 | 307210830 | 0.0 |
21 | TESS Sector 36 | 2021 | SPOC | 120 | 307210830 | 0.0 |
22 | TESS Sector 37 | 2021 | SPOC | 20 | 307210830 | 0.0 |
23 | TESS Sector 37 | 2021 | SPOC | 120 | 307210830 | 0.0 |
24 | TESS Sector 38 | 2021 | SPOC | 20 | 307210830 | 0.0 |
25 | TESS Sector 38 | 2021 | SPOC | 120 | 307210830 | 0.0 |
26 | TESS Sector 39 | 2021 | SPOC | 20 | 307210830 | 0.0 |
27 | TESS Sector 39 | 2021 | SPOC | 120 | 307210830 | 0.0 |
# | mission | year | author | exptime | target_name | distance |
---|---|---|---|---|---|---|
s | arcsec | |||||
0 | TESS Sector | 2018 | DIAMANTE | 1800 | 307210830 | 0.0 |
1 | TESS Sector 02 | 2018 | SPOC | 120 | 307210830 | 0.0 |
2 | TESS Sector 02 | 2018 | TESS-SPOC | 1800 | 307210830 | 0.0 |
3 | TESS Sector 02 | 2018 | QLP | 1800 | 307210830 | 0.0 |
4 | TESS Sector 02 | 2018 | TASOC | 120 | 307210830 | 0.0 |
5 | TESS Sector 02 | 2018 | TASOC | 1800 | 307210830 | 0.0 |
6 | TESS Sector 05 | 2018 | SPOC | 120 | 307210830 | 0.0 |
7 | TESS Sector 05 | 2018 | TESS-SPOC | 1800 | 307210830 | 0.0 |
8 | TESS Sector 05 | 2018 | QLP | 1800 | 307210830 | 0.0 |
9 | TESS Sector 08 | 2019 | SPOC | 120 | 307210830 | 0.0 |
... | ... | ... | ... | ... | ... | ... |
28 | TESS Sector 35 | 2021 | SPOC | 20 | 307210830 | 0.0 |
29 | TESS Sector 35 | 2021 | SPOC | 120 | 307210830 | 0.0 |
30 | TESS Sector 36 | 2021 | SPOC | 20 | 307210830 | 0.0 |
31 | TESS Sector 36 | 2021 | SPOC | 120 | 307210830 | 0.0 |
32 | TESS Sector 37 | 2021 | SPOC | 20 | 307210830 | 0.0 |
33 | TESS Sector 37 | 2021 | SPOC | 120 | 307210830 | 0.0 |
34 | TESS Sector 38 | 2021 | SPOC | 20 | 307210830 | 0.0 |
35 | TESS Sector 38 | 2021 | SPOC | 120 | 307210830 | 0.0 |
36 | TESS Sector 39 | 2021 | SPOC | 20 | 307210830 | 0.0 |
37 | TESS Sector 39 | 2021 | SPOC | 120 | 307210830 | 0.0 |
# | mission | year | author | exptime | target_name | distance |
---|---|---|---|---|---|---|
s | arcsec | |||||
0 | TESS Sector 02 | 2018 | SPOC | 120 | 307210830 | 0.0 |
1 | TESS Sector 05 | 2018 | SPOC | 120 | 307210830 | 0.0 |
2 | TESS Sector 08 | 2019 | SPOC | 120 | 307210830 | 0.0 |
3 | TESS Sector 09 | 2019 | SPOC | 120 | 307210830 | 0.0 |
4 | TESS Sector 10 | 2019 | SPOC | 120 | 307210830 | 0.0 |
5 | TESS Sector 11 | 2019 | SPOC | 120 | 307210830 | 0.0 |
6 | TESS Sector 12 | 2019 | SPOC | 120 | 307210830 | 0.0 |
7 | TESS Sector 28 | 2020 | SPOC | 120 | 307210830 | 0.0 |
8 | TESS Sector 29 | 2020 | SPOC | 120 | 307210830 | 0.0 |
9 | TESS Sector 32 | 2020 | SPOC | 120 | 307210830 | 0.0 |
10 | TESS Sector 35 | 2021 | SPOC | 120 | 307210830 | 0.0 |
11 | TESS Sector 36 | 2021 | SPOC | 120 | 307210830 | 0.0 |
12 | TESS Sector 37 | 2021 | SPOC | 120 | 307210830 | 0.0 |
13 | TESS Sector 38 | 2021 | SPOC | 120 | 307210830 | 0.0 |
14 | TESS Sector 39 | 2021 | SPOC | 120 | 307210830 | 0.0 |
time | flux | flux_err | timecorr | cadenceno | centroid_col | centroid_row | sap_flux | sap_flux_err | sap_bkg | sap_bkg_err | pdcsap_flux | pdcsap_flux_err | quality | psf_centr1 | psf_centr1_err | psf_centr2 | psf_centr2_err | mom_centr1 | mom_centr1_err | mom_centr2 | mom_centr2_err | pos_corr1 | pos_corr2 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
electron / s | electron / s | d | pix | pix | electron / s | electron / s | electron / s | electron / s | electron / s | electron / s | pix | pix | pix | pix | pix | pix | pix | pix | pix | pix | |||
object | float32 | float32 | float32 | int32 | float64 | float64 | float32 | float32 | float32 | float32 | float32 | float32 | int32 | float64 | float32 | float64 | float32 | float64 | float32 | float64 | float32 | float32 | float32 |
1354.1074113410245 | 2.4635420e+04 | 1.8856627e+01 | -8.0586493e-04 | 91190 | 664.04462 | 338.97644 | 2.3127123e+04 | 1.7658133e+01 | 1.8465968e+03 | 5.2003989e+00 | 2.4635420e+04 | 1.8856627e+01 | 0 | nan | nan | nan | nan | 664.04462 | 6.2346959e-04 | 338.97644 | 6.9568102e-04 | 3.1294446e-02 | 1.5483069e-01 |
1354.1088002024744 | 2.4656008e+04 | 1.8861403e+01 | -8.0589182e-04 | 91191 | 664.05609 | 338.96900 | 2.3150639e+04 | 1.7662607e+01 | 1.8428802e+03 | 5.1911125e+00 | 2.4656008e+04 | 1.8861403e+01 | 0 | nan | nan | nan | nan | 664.05609 | 6.2315754e-04 | 338.96900 | 6.9629494e-04 | 4.3172963e-02 | 1.4587776e-01 |
1354.110189063866 | 2.4635619e+04 | 1.8864876e+01 | -8.0591877e-04 | 91192 | 664.07351 | 338.95814 | 2.3137189e+04 | 1.7665859e+01 | 1.8525369e+03 | 5.2004828e+00 | 2.4635619e+04 | 1.8864876e+01 | 0 | nan | nan | nan | nan | 664.07351 | 6.2400498e-04 | 338.95814 | 6.9669099e-04 | 6.0803384e-02 | 1.3428329e-01 |
1354.1129667867635 | 2.4621027e+04 | 1.8853863e+01 | -8.0597255e-04 | 91194 | 664.05132 | 338.94885 | 2.3098303e+04 | 1.7655546e+01 | 1.8542960e+03 | 5.2071209e+00 | 2.4621027e+04 | 1.8853863e+01 | 0 | nan | nan | nan | nan | 664.05132 | 6.2639196e-04 | 338.94885 | 6.9927127e-04 | 3.7734102e-02 | 1.2694269e-01 |
1354.1143556482134 | 2.4617400e+04 | 1.8859161e+01 | -8.0599944e-04 | 91195 | 664.09017 | 338.97538 | 2.3127893e+04 | 1.7660507e+01 | 1.8433275e+03 | 5.1999226e+00 | 2.4617400e+04 | 1.8859161e+01 | 0 | nan | nan | nan | nan | 664.09017 | 6.2417402e-04 | 338.97538 | 6.9604575e-04 | 7.8965843e-02 | 1.5301819e-01 |
1354.1157445097215 | 2.4630531e+04 | 1.8860582e+01 | -8.0602628e-04 | 91196 | 664.08357 | 338.96449 | 2.3136076e+04 | 1.7661839e+01 | 1.8441443e+03 | 5.1992383e+00 | 2.4630531e+04 | 1.8860582e+01 | 0 | nan | nan | nan | nan | 664.08357 | 6.2411965e-04 | 338.96449 | 6.9649977e-04 | 7.2042428e-02 | 1.4030553e-01 |
1354.117133371171 | 2.4625502e+04 | 1.8855038e+01 | -8.0605317e-04 | 91197 | 664.08138 | 338.96244 | 2.3130492e+04 | 1.7656647e+01 | 1.8393002e+03 | 5.1891294e+00 | 2.4625502e+04 | 1.8855038e+01 | 0 | nan | nan | nan | nan | 664.08138 | 6.2480610e-04 | 338.96244 | 6.9642899e-04 | 6.8586096e-02 | 1.3917884e-01 |
1354.118522232678 | 2.4619252e+04 | 1.8856379e+01 | -8.0608000e-04 | 91198 | 664.07300 | 338.95776 | 2.3123014e+04 | 1.7657902e+01 | 1.8428878e+03 | 5.1969514e+00 | 2.4619252e+04 | 1.8856379e+01 | 0 | nan | nan | nan | nan | 664.07300 | 6.2365801e-04 | 338.95776 | 6.9719343e-04 | 6.0448773e-02 | 1.3230386e-01 |
1354.1199110941275 | 2.4591127e+04 | 1.8846928e+01 | -8.0610689e-04 | 91199 | 664.07806 | 338.96029 | 2.3098383e+04 | 1.7649052e+01 | 1.8459741e+03 | 5.1905088e+00 | 2.4591127e+04 | 1.8846928e+01 | 0 | nan | nan | nan | nan | 664.07806 | 6.2481815e-04 | 338.96029 | 6.9739192e-04 | 6.4667158e-02 | 1.3584568e-01 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
1381.5000762208806 | nan | nan | -1.1857160e-03 | 110913 | 664.02023 | 338.82238 | 2.3102398e+04 | 1.8364481e+01 | 3.0264915e+03 | 6.2652044e+00 | nan | nan | 1000000000000000 | nan | nan | nan | nan | 664.02023 | 6.5423414e-04 | 338.82238 | 7.4187893e-04 | 5.3329854e-03 | -1.7557999e-02 |
1381.5014650890794 | nan | nan | -1.1857362e-03 | 110914 | 664.02570 | 338.81828 | 2.3131156e+04 | 1.8370392e+01 | 3.0202869e+03 | 6.2575917e+00 | nan | nan | 1000000000000000 | nan | nan | nan | nan | 664.02570 | 6.5429986e-04 | 338.81828 | 7.4093667e-04 | 1.0951885e-02 | -1.8822383e-02 |
1381.5028539571613 | nan | nan | -1.1857564e-03 | 110915 | 664.02563 | 338.82131 | 2.3093904e+04 | 1.8351555e+01 | 3.0234182e+03 | 6.2496614e+00 | nan | nan | 1000000000000000 | nan | nan | nan | nan | 664.02563 | 6.5500144e-04 | 338.82131 | 7.4103329e-04 | 9.7870119e-03 | -1.7654052e-02 |
1381.50424282536 | nan | nan | -1.1857765e-03 | 110916 | 664.01844 | 338.82636 | 2.3070465e+04 | 1.8338472e+01 | 3.0037410e+03 | 6.2505035e+00 | nan | nan | 1000000000000000 | nan | nan | nan | nan | 664.01844 | 6.5486954e-04 | 338.82636 | 7.4021460e-04 | 2.8580690e-03 | -1.0282305e-02 |
1381.5056316934429 | nan | nan | -1.1857968e-03 | 110917 | 664.02351 | 338.81538 | 2.3084883e+04 | 1.8339640e+01 | 3.0044412e+03 | 6.2367158e+00 | nan | nan | 1000000000000000 | nan | nan | nan | nan | 664.02351 | 6.5468432e-04 | 338.81538 | 7.4014551e-04 | 8.9326696e-03 | -2.2021463e-02 |
1381.507020561642 | nan | nan | -1.1858169e-03 | 110918 | 664.02287 | 338.81223 | 2.3056941e+04 | 1.8327822e+01 | 3.0007908e+03 | 6.2351022e+00 | nan | nan | 1000000000000000 | nan | nan | nan | nan | 664.02287 | 6.5470359e-04 | 338.81223 | 7.4105512e-04 | 7.0573296e-03 | -2.6359776e-02 |
1381.5084094298413 | nan | nan | -1.1858371e-03 | 110919 | 664.02458 | 338.81035 | 2.3082803e+04 | 1.8332623e+01 | 2.9834062e+03 | 6.2297935e+00 | nan | nan | 1000000000000000 | nan | nan | nan | nan | 664.02458 | 6.5470277e-04 | 338.81035 | 7.4060517e-04 | 9.5733264e-03 | -2.9673917e-02 |
1381.5097982979241 | nan | nan | -1.1858573e-03 | 110920 | 664.01752 | 338.82169 | 2.3091609e+04 | 1.8332087e+01 | 2.9773435e+03 | 6.2250428e+00 | nan | nan | 1000000000000000 | nan | nan | nan | nan | 664.01752 | 6.5375940e-04 | 338.82169 | 7.3996367e-04 | 3.0533469e-03 | -1.5633952e-02 |
1381.5111871661225 | nan | nan | -1.1858775e-03 | 110921 | 664.02862 | 338.81318 | 2.3086258e+04 | 1.8320450e+01 | 2.9649575e+03 | 6.2088137e+00 | nan | nan | 1000000000000000 | nan | nan | nan | nan | 664.02862 | 6.5425027e-04 | 338.81318 | 7.3958829e-04 | 1.3605391e-02 | -2.5300540e-02 |
1381.5125760342053 | nan | nan | -1.1858977e-03 | 110922 | 664.01887 | 338.81982 | 2.3105682e+04 | 1.8324867e+01 | 2.9604985e+03 | 6.2097011e+00 | nan | nan | 1000000000000000 | nan | nan | nan | nan | 664.01887 | 6.5310486e-04 | 338.81982 | 7.3841790e-04 | 3.2073301e-03 | -1.8903004e-02 |
\\n\"+\n", " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", " \"
\\n\"+\n", " \"\\n\"+\n",
" \"from bokeh.resources import INLINE\\n\"+\n",
" \"output_notebook(resources=INLINE)\\n\"+\n",
" \"
\\n\"+\n",
" \"\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"
\\n\"+\n \"time | flux | flux_err | centroid_col | centroid_row | cadenceno | quality |
---|---|---|---|---|---|---|
electron / s | electron / s | pix | pix | |||
object | float32 | float32 | float64 | float64 | int64 | int32 |
1354.1355100037465 | 20954.431640625 | 3.968478202819824 | 664.053236257685 | 338.870953330744 | 0 | 0 |
1354.1563430385859 | 20953.640625 | 3.9688515663146973 | 664.0529987132587 | 338.87003750094146 | 1 | 0 |
1354.177176075171 | 20948.37890625 | 3.9678900241851807 | 664.0535754626561 | 338.8696240269748 | 2 | 0 |
1354.1980091135024 | 20953.16796875 | 3.9682953357696533 | 664.053397969705 | 338.86938462421125 | 3 | 0 |
1354.218842153522 | 20949.62109375 | 3.9680519104003906 | 664.05334777157 | 338.86842105447164 | 4 | 0 |
1354.239675195171 | 20950.841796875 | 3.9680023193359375 | 664.0529491917277 | 338.8680324715659 | 5 | 0 |
1354.260508238421 | 20944.640625 | 3.9673573970794678 | 664.0522733076061 | 338.86667562350004 | 6 | 0 |
1354.2813412832716 | 20952.73046875 | 3.9680874347686768 | 664.0519973612013 | 338.86666190722457 | 7 | 0 |
1354.302174329665 | 20949.45703125 | 3.9677042961120605 | 664.0511057724311 | 338.8659224181862 | 8 | 0 |
... | ... | ... | ... | ... | ... | ... |
1381.3018854391335 | 21803.31640625 | 4.048139572143555 | 664.009622243243 | 338.7804066840283 | 1186 | 0 |
1381.3227185149694 | 21763.5703125 | 4.044528007507324 | 664.0098234495485 | 338.7783433746617 | 1187 | 0 |
1381.3435515902245 | 21740.970703125 | 4.0420989990234375 | 664.010488493472 | 338.7803301985909 | 1188 | 0 |
1381.364384664897 | 21700.6015625 | 4.038733005523682 | 664.0101843813644 | 338.77844460947045 | 1189 | 0 |
1381.385217739045 | 21676.36328125 | 4.036615371704102 | 664.0108564056399 | 338.7785207357921 | 1190 | 0 |
1381.4060508126108 | 21656.921875 | 4.034541606903076 | 664.0106157420802 | 338.777296648174 | 1191 | 0 |
1381.4268838857115 | 21613.62890625 | 4.0302863121032715 | 664.0110574507974 | 338.77740512578055 | 1192 | 0 |
1381.447716958347 | 21571.404296875 | 4.026115417480469 | 664.0115646734967 | 338.77744780257865 | 1193 | 0 |
1381.468550030574 | 21527.71875 | 4.021993160247803 | 664.0113081777426 | 338.77612574703835 | 1194 | 0 |
1381.4893831023946 | 21476.515625 | 4.017423152923584 | 664.0124305558461 | 338.7753083946345 | 1195 | 0 |
\\n\"+\n", " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", " \"
\\n\"+\n", " \"\\n\"+\n",
" \"from bokeh.resources import INLINE\\n\"+\n",
" \"output_notebook(resources=INLINE)\\n\"+\n",
" \"
\\n\"+\n",
" \"\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"
\\n\"+\n \"\\n\"+\n", " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", " \"
\\n\"+\n", " \"\\n\"+\n",
" \"from bokeh.resources import INLINE\\n\"+\n",
" \"output_notebook(resources=INLINE)\\n\"+\n",
" \"
\\n\"+\n",
" \"\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"
\\n\"+\n \"