{ "cells": [ { "cell_type": "markdown", "id": "f28a6e79", "metadata": {}, "source": [ "# Example with dummy data\n", "\n", "This notebook shows a simplified use case utilizing a dummy set of randomly generated particle data. It is by default set to simulate a catalog of stars with Gaia DR2 astrometry & photometry, but you may change the parameters defined below to your liking. In short, the pipeline is accessible via the class `Ananke`, which method `run` can eventually be called after creation of an `Ananke` object to run the full ananke pipeline. The method `run` is designed to returns the catalog in the form of an `Output` object of the submodule `Galaxia_ananke` which can be used as a `vaex` dataframe.\n", "\n", "Below are the packages that this notebook must import:" ] }, { "cell_type": "code", "execution_count": 1, "id": "f130bf6c", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'0.2.0b3.dev1'" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import numpy as np\n", "import ananke as an\n", "an.__version__" ] }, { "attachments": {}, "cell_type": "markdown", "id": "d0809afe", "metadata": {}, "source": [ "We define here some dummy input data. `Ananke` has a method `make_dummy_particles_input` to produce such data in a dictionary formatted output. Below we show how to call it and the keys that compose that dictionary." ] }, { "cell_type": "code", "execution_count": 2, "id": "f4dafbb1", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "dict_keys(['pos3', 'vel3', 'mass', 'age', 'feh', 'helium', 'carbon', 'nitrogen', 'oxygen', 'neon', 'magnesium', 'silicon', 'sulphur', 'calcium', 'alpha', 'parentid', 'partitionid', 'dform', 'id', 'log10_NH'])" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "np.random.seed(0)\n", "p = an.Ananke.make_dummy_particles_input()\n", "p.keys()" ] }, { "cell_type": "markdown", "id": "51f0f1ae", "metadata": {}, "source": [ "The input data must be formatted as a dictionary of equal-length arrays. The dictionary must have the following entries:\n", "- key `pos3`: particle position coordinates in $kpc$ (shape Nx3)\n", "- key `vel3`: particle velocity coordinates in $km.s^{-1}$ (shape Nx3)\n", "- key `mass`: particle stellar mass in solar masses\n", "- key `age`: particle log10 stellar age in years\n", "- key `feh`: particle stellar metallicity \\[Fe/H\\] in dex relative to solar\n", "\n", "Additionally, the following entries can optionally be added:\n", "- key `parentid`: index to give to the parent particle\n", "- key `id`: additional index to classify the parent particle\n", "- key `log10_NH`: log10 hydrogen column densities between Observer position and particle in $cm^{-2}$ - must be provided to estimate extinctions\n", "- key `dform`: particle formation distance\n", "- keys `helium`, `carbon`, `nitrogen`, `oxygen`, `neon`, `magnesium`, `silicon`, `sulphur`, `calcium`: particle various chemical abundances \\[X/H\\]\n", "- key `alpha`: particle alpha chemical abundances \\[Mg/Fe\\]\n", "\n", "Ananke will compute the phase space densities that are used to determine particle smoothing lengths, but one can include pre-computed densities with the following entries:\n", "- key `rho_pos`: particle density in position space in $kpc^{-3}$\n", "- key `rho_vel`: particle density in velocity space in $km^{-3}.s^{3}$\n", "\n", "At any time, you may access this format via the helper of the `Ananke.make_dummy_particles_input` method using\n", "\n", "`help(an.Ananke.make_dummy_particles_input)`" ] }, { "attachments": {}, "cell_type": "markdown", "id": "55c50b11", "metadata": {}, "source": [ "We define below some parameters for Ananke such as\n", " - the observer position `observer`\n", " - the shell of particles to mask `rshell`\n", " - the sampling factor `fsample`\n", " - the photometric system of choice `photo_sys` (in our case Gaia DR2)\n", " - the CMD `cmd_magnames` and its box limits `cmd_box`" ] }, { "cell_type": "code", "execution_count": 3, "id": "1ecc74b8", "metadata": {}, "outputs": [], "source": [ "D = 200 # *units.kpc\n", "\n", "observer = np.nan*np.ones(3)\n", "while not np.linalg.norm(observer)<1:\n", " observer = 2*np.random.rand(3)-1\n", "\n", "observer *= D/np.linalg.norm(observer)\n", "\n", "rshell = [0, 2*D]\n", "\n", "fsample = 0.01\n", "\n", "photo_sys = 'padova/GAIA__DR2'\n", "\n", "cmd_magnames = {'magnitude': 'G',\n", " 'color_minuend': 'Gbp',\n", " 'color_subtrahend': 'Grp'}\n", "\n", "cmd_box = {\n", " 'abs_mag_lim_lo': -1000,\n", " 'abs_mag_lim_hi': 1000,\n", " # 'app_mag_lim_lo' : -1000,\n", " 'app_mag_lim_hi': 30,\n", " # 'color_lim_lo' : -1000,\n", " # 'color_lim_hi' : 1000\n", " }" ] }, { "cell_type": "markdown", "id": "8e3b700c", "metadata": {}, "source": [ "For more details regarding these parameters and more, you may consult the docstring associated to the class `Ananke` via the lines:\n", "\n", "`help(an.Ananke.__init__)`\n", "\n", "or\n", "\n", "`help(an.Ananke)`\n", "\n", "Note that among those are 3 special parameters, `d_params`, `e_params` and `err_params`, which receive dictionaries of subparameters to configure the sub-steps of the pipeline corresponding respectively to the phase space density estimation, the extinction mapping and the instrument error modeling. Each have further documentation that can be accessed calling the following methods:\n", "\n", "`an.display_density_docs()` for `d_params`\n", "\n", "`an.display_extinction_docs()` for `e_params`\n", "\n", "`an.display_errormodel_docs()` for `err_params`" ] }, { "attachments": {}, "cell_type": "markdown", "id": "1f132dcb", "metadata": {}, "source": [ "We show below how to create the `Ananke` pipeline object before calling `run`, using the parameters we defined above." ] }, { "cell_type": "code", "execution_count": 4, "id": "f56bb9c8", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/home/athob/miniconda3/envs/main/lib/python3.10/site-packages/ananke/utils.py:26: UserWarning: Pandas doesn't allow columns to be created via a new attribute name - see https://pandas.pydata.org/pandas-docs/stable/indexing.html#attribute-access\n", " self._record_of_all_used_keys = set()\n", "/home/athob/miniconda3/envs/main/lib/python3.10/site-packages/ananke/utils.py:26: UserWarning: Pandas doesn't allow columns to be created via a new attribute name - see https://pandas.pydata.org/pandas-docs/stable/indexing.html#attribute-access\n", " self._record_of_all_used_keys = set()\n" ] } ], "source": [ "name = 'sim'\n", "ananke = an.Ananke(p, name, fsample=fsample,\n", " observer=observer, rshell=rshell,\n", " photo_sys=photo_sys, cmd_magnames=cmd_magnames,\n", " **cmd_box)" ] }, { "attachments": {}, "cell_type": "markdown", "id": "fb2ba696", "metadata": {}, "source": [ "As mentioned above, the `Ananke` method `run` runs the pipeline once it has been created. Some additional parameters can be provided to this method, which are listed in its docstring (accessible by calling `help(ananke.run)`). Those include:\n", "- `input_dir`, `output_dir`, `i_o_dir` - Optional arguments to specify paths for the directories where `ananke` should generate input and output data. If the `i_o_dir` keyword argument is provided, it overrides any path given to the `input_dir` and `output_dir` keyword arguments.\n", "- `k_factor` – Scaling factor applied to the kernels lengths to adjust all the kernels sizes uniformly. Lower values reduces the kernels extents, while higher values increases them. Default to 1 (no adjustment).\n", "- `surveyname` – Optional name `Galaxia` should use for the output files. Default to `'survey'`.\n", "- `n_jobs` – Number of independent catalog generations ran in parallel. Default to 1.\n", "- `verbose` – Verbose boolean flag to allow pipeline to print what it's doing to stdout. Default to `True`.\n", "- `rand_seed` – Seed to be used by `Galaxia`'s pseudorandom number generator. Default to 17052\n", "- `nstart` – Index at which to start indexing synthetic stars. Default to 0\n", "For our example however, we will use the method as it is.\n", "\n", "\n", "\n", "
Some of the `run` method parameters are currently not properly implemented, using them may lead to unexpected results
\n", "| # | A_0 | A_gaia__dr2_g | A_gaia__dr2_gbp | A_gaia__dr2_grp | E(B-V) | age | alpha | calcium | carbon | dec | dec_Err | dec_Sig | dform | dmod | feh | gaia__dr2_g | gaia__dr2_g_Err | gaia__dr2_g_Intrinsic | gaia__dr2_g_Sig | gaia__dr2_gbp | gaia__dr2_gbp_Err | gaia__dr2_gbp_Intrinsic | gaia__dr2_gbp_Sig | gaia__dr2_grp | gaia__dr2_grp_Err | gaia__dr2_grp_Intrinsic | gaia__dr2_grp_Sig | glat | glon | grav | helium | log10_NH | lum | mact | magnesium | mtip | mub | mudec | mudec_Err | mudec_Sig | mul | mura | mura_Err | mura_Sig | neon | nitrogen | oxygen | parentid | partid | partitionid | pi | pi_Err | pi_Sig | px | py | pz | ra | ra_Err | ra_Sig | rad | satid | silicon | smass | sulphur | teff | vr | vr_Err | vr_Sig | vx | vy | vz |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 0.7093970129666607 | 0.5278885380814685 | 0.7125676091560069 | 0.40701678341228237 | 0.22883774611827765 | 10.016325950622559 | 0.3380742371082306 | -1.1830222606658936 | -0.39430123567581177 | nan | nan | nan | 0.0 | 20.87123488088669 | -0.8867433071136475 | nan | nan | 7.6075797 | nan | nan | nan | 8.22037 | nan | nan | nan | 6.875088 | nan | nan | nan | 4.7529893 | -0.7315406799316406 | 21.757467670308863 | 0.08502915 | 0.52380776 | -0.5486690402030945 | 0.886202 | nan | nan | nan | nan | nan | nan | nan | nan | -0.7326117157936096 | -0.652482807636261 | -0.6697278618812561 | 0 | 0 | 0 | nan | nan | nan | -142.0352559796068 | 46.20841677042607 | 0.6925918281909844 | nan | nan | nan | 149.3643578805275 | 0 | -0.7563512325286865 | 0.5240775107307198 | -1.0924330949783325 | 4399.992 | nan | nan | nan | 67.38685760498046 | -300.3354850769043 | 55.13861343383789 |
| 1 | 0.3913526151493549 | 0.29144945079467655 | 0.3932110342103401 | 0.22456925568778976 | 0.12624277908043705 | 10.016325950622559 | 0.3380742371082306 | -1.1830222606658936 | -0.39430123567581177 | nan | nan | nan | 0.0 | 20.87527071994942 | -0.8867433071136475 | nan | nan | 7.8151436 | nan | nan | nan | 8.465081 | nan | nan | nan | 7.0564466 | nan | nan | nan | 4.767861 | -0.7315406799316406 | 21.499146555104666 | 0.07226164 | 0.507031 | -0.5486690402030945 | 0.886202 | nan | nan | nan | nan | nan | nan | nan | nan | -0.7326117157936096 | -0.652482807636261 | -0.6697278618812561 | 0 | 1 | 0 | nan | nan | nan | -142.26086176292293 | 46.417971376138425 | -0.11534282804241658 | nan | nan | nan | 149.6422205133747 | 0 | -0.7563512325286865 | 0.5073366488986605 | -1.0924330949783325 | 4295.465 | nan | nan | nan | 67.7484200428451 | -298.29957314526564 | 52.69162146715175 |
| 2 | 7.392986027528272 | 4.395135897711333 | 6.739848191949818 | 3.857969371581923 | 2.3848342024284745 | 10.016325950622559 | 0.3380742371082306 | -1.1830222606658936 | -0.39430123567581177 | nan | nan | nan | 0.0 | 20.888157433594138 | -0.8867433071136475 | nan | nan | 8.512117 | nan | nan | nan | 9.277008 | nan | nan | nan | 7.679845 | nan | nan | nan | 4.8335814 | -0.7315406799316406 | 22.775398200235458 | 0.040845014 | 0.44261116 | -0.5486690402030945 | 0.886202 | nan | nan | nan | nan | nan | nan | nan | nan | -0.7326117157936096 | -0.652482807636261 | -0.6697278618812561 | 0 | 1 | 0 | nan | nan | nan | -142.92704618284074 | 47.20842184009032 | 1.8396875936103667 | nan | nan | nan | 150.53292023217344 | 0 | -0.7563512325286865 | 0.4436048636953867 | -1.0924330949783325 | 4001.0637 | nan | nan | nan | 68.03093236871236 | -301.4758806839234 | 56.09200627357448 |
| 3 | 3.6129888513390416 | 2.2818297625233486 | 3.4033181539962825 | 1.9506143576453838 | 1.1654802746254973 | 10.016325950622559 | 0.3380742371082306 | -1.1830222606658936 | -0.39430123567581177 | nan | nan | nan | 0.0 | 20.867217518655195 | -0.8867433071136475 | nan | nan | 9.037168 | nan | nan | nan | 9.901029 | nan | nan | nan | 8.152237 | nan | nan | nan | 4.8903975 | -0.7315406799316406 | 22.46444493629801 | 0.027340515 | 0.39295405 | -0.5486690402030945 | 0.886202 | nan | nan | nan | nan | nan | nan | nan | nan | -0.7326117157936096 | -0.652482807636261 | -0.6697278618812561 | 0 | 1 | 0 | nan | nan | nan | -141.29345876416804 | 47.56378569643568 | 1.0770165239203249 | nan | nan | nan | 149.08827976709273 | 0 | -0.7563512325286865 | 0.39350367992526536 | -1.0924330949783325 | 3854.4998 | nan | nan | nan | 69.12724120992327 | -301.73920387771557 | 55.1029961513569 |
| 4 | 0.7014795175813543 | 0.5867886042288581 | 0.7483665104609659 | 0.4149519539856739 | 0.22628371534882397 | 10.016325950622559 | 0.3380742371082306 | -1.1830222606658936 | -0.39430123567581177 | nan | nan | nan | 0.0 | 20.86868071849355 | -0.8867433071136475 | nan | nan | 4.9383516 | nan | nan | nan | 5.201803 | nan | nan | nan | 4.5038996 | nan | nan | nan | 4.4819903 | -0.7315406799316406 | 21.752593309473333 | 0.8118422 | 0.7637918 | -0.5486690402030945 | 0.886202 | nan | nan | nan | nan | nan | nan | nan | nan | -0.7326117157936096 | -0.652482807636261 | -0.6697278618812561 | 0 | 1 | 0 | nan | nan | nan | -141.8805554620098 | 46.1152954631301 | 0.7600375956495602 | nan | nan | nan | 149.18877354213697 | 0 | -0.7563512325286865 | 0.7644402589837288 | -1.0924330949783325 | 6018.22 | nan | nan | nan | 67.38594209547328 | -300.6020691055117 | 52.577100775679746 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 1,614,158 | 14.060044512202722 | 8.423013661152801 | 12.868806573414634 | 7.057230806575605 | 4.535498229742814 | 9.99021053314209 | 0.7036365270614624 | -0.8931915760040283 | 0.053123194724321365 | nan | nan | nan | 0.0 | 21.61548082188761 | -0.8060703873634338 | nan | nan | 5.2621174 | nan | nan | nan | 5.553659 | nan | nan | nan | 4.7985764 | nan | nan | nan | 4.550951 | -0.05126773566007614 | 23.054565010441443 | 0.59976685 | 0.74945873 | -0.10243386775255203 | 0.92552537 | nan | nan | nan | nan | nan | nan | nan | nan | -0.5620968341827393 | 0.0669776126742363 | -1.2146226167678833 | 99999 | 1 | 0 | nan | nan | nan | -186.47851700510247 | 97.15110580779618 | 8.115853991105647 | nan | nan | nan | 210.42443239820048 | 0 | -1.247308373451233 | 0.7500223134586655 | -0.9955946803092957 | 5835.22 | nan | nan | nan | 15.3421637420611 | -165.14197870135874 | -22.75520995737303 |
| 1,614,159 | 11.063923128969243 | 6.45510528739357 | 9.91050274374604 | 5.5781547672436895 | 3.5690074609578204 | 9.99021053314209 | 0.7036365270614624 | -0.8931915760040283 | 0.053123194724321365 | nan | nan | nan | 0.0 | 21.61577240657062 | -0.8060703873634338 | nan | nan | 7.930956 | nan | nan | nan | 8.61342 | nan | nan | nan | 7.150438 | nan | nan | nan | 4.7677984 | -0.05126773566007614 | 22.9504874645149 | 0.06644254 | 0.5040816 | -0.10243386775255203 | 0.92552537 | nan | nan | nan | nan | nan | nan | nan | nan | -0.5620968341827393 | 0.0669776126742363 | -1.2146226167678833 | 99999 | 1 | 0 | nan | nan | nan | -186.12304867647393 | 97.82701074897133 | 8.855589130749113 | nan | nan | nan | 210.45269002689673 | 0 | -1.247308373451233 | 0.504675216060176 | -0.9955946803092957 | 4213.1426 | nan | nan | nan | 14.420329840561417 | -164.29459688870557 | -23.616658988980973 |
| 1,614,160 | 2.6202151095083157 | 1.9979343957376579 | 2.682412465734748 | 1.5085576559312066 | 0.8452306804865534 | 9.99021053314209 | 0.7036365270614624 | -0.8931915760040283 | 0.053123194724321365 | nan | nan | nan | 0.0 | 21.60797143158025 | -0.8060703873634338 | nan | nan | 5.420544 | nan | nan | nan | 5.727753 | nan | nan | nan | 4.9413347 | nan | nan | nan | 4.574493 | -0.05126773566007614 | 22.32491526151538 | 0.51845455 | 0.7332436 | -0.10243386775255203 | 0.92552537 | nan | nan | nan | nan | nan | nan | nan | nan | -0.5620968341827393 | 0.0669776126742363 | -1.2146226167678833 | 99999 | 1 | 0 | nan | nan | nan | -185.4155407018892 | 97.54207904767259 | 8.937050140256144 | nan | nan | nan | 209.69799899838287 | 0 | -1.247308373451233 | 0.7337202617485947 | -0.9955946803092957 | 5735.347 | nan | nan | nan | 15.215907684749888 | -163.1710353003309 | -24.28579876779026 |
| 1,614,161 | 20.11053022532025 | 12.915669131356063 | 18.55864938118823 | 9.438526458834994 | 6.487267814619435 | 9.99021053314209 | 0.7036365270614624 | -0.8931915760040283 | 0.053123194724321365 | nan | nan | nan | 0.0 | 21.62280870754291 | -0.8060703873634338 | nan | nan | 4.007981 | nan | nan | nan | 4.2347775 | nan | nan | nan | 3.6183882 | nan | nan | nan | 4.2465305 | -0.05126773566007614 | 23.210001836001144 | 1.9032125 | 0.86141604 | -0.10243386775255203 | 0.92552537 | nan | nan | nan | nan | nan | nan | nan | nan | -0.5620968341827393 | 0.0669776126742363 | -1.2146226167678833 | 99999 | 1 | 0 | nan | nan | nan | -187.14867284718903 | 97.44088694333617 | 7.677616529567153 | nan | nan | nan | 211.13573357521292 | 0 | -1.247308373451233 | 0.8632034883204436 | -0.9955946803092957 | 6314.5522 | nan | nan | nan | 14.154347672917513 | -163.58046604010096 | -22.627405955186447 |
| 1,614,162 | 6.453998533061608 | 4.090151594340529 | 6.058586091870591 | 3.4826187148728667 | 2.0819350106650347 | 9.99021053314209 | 0.7036365270614624 | -0.8931915760040283 | 0.053123194724321365 | nan | nan | nan | 0.0 | 21.61092186109904 | -0.8060703873634338 | nan | nan | -0.38972253 | nan | nan | nan | 0.14156544 | nan | nan | nan | -1.0621885 | nan | nan | nan | 1.9115392 | -0.05126773566007614 | 22.71640717719426 | 126.867645 | 0.918 | -0.10243386775255203 | 0.92552537 | nan | nan | nan | nan | nan | nan | nan | nan | -0.5620968341827393 | 0.0669776126742363 | -1.2146226167678833 | 99999 | 1 | 0 | nan | nan | nan | -185.74462203272492 | 97.5570866189969 | 8.628931734904029 | nan | nan | nan | 209.98311414623782 | 0 | -1.247308373451233 | 0.9262041245678233 | -0.9955946803092957 | 4627.436 | nan | nan | nan | 14.454929312951862 | -163.59304101770525 | -24.333362842441787 |
| # | A_0 | A_gaia__dr2_g | A_gaia__dr2_gbp | A_gaia__dr2_grp | E(B-V) | age | alpha | calcium | carbon | dec | dec_Err | dec_Sig | dform | dmod | feh | gaia__dr2_g | gaia__dr2_g_Err | gaia__dr2_g_Intrinsic | gaia__dr2_g_Sig | gaia__dr2_gbp | gaia__dr2_gbp_Err | gaia__dr2_gbp_Intrinsic | gaia__dr2_gbp_Sig | gaia__dr2_grp | gaia__dr2_grp_Err | gaia__dr2_grp_Intrinsic | gaia__dr2_grp_Sig | glat | glon | grav | helium | log10_NH | lum | mact | magnesium | mtip | mub | mudec | mudec_Err | mudec_Sig | mul | mura | mura_Err | mura_Sig | neon | nitrogen | oxygen | parentid | partid | partitionid | pi | pi_Err | pi_Sig | px | py | pz | ra | ra_Err | ra_Sig | rad | satid | silicon | smass | sulphur | teff | vr | vr_Err | vr_Sig | vx | vy | vz |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 0.05681650709265598 | 0.04671342391859208 | 0.05985558882052393 | 0.03353577934926581 | 0.018327905513759995 | 8.97172737121582 | -0.6125200986862183 | -0.12460324913263321 | -0.36052706837654114 | 41.517887 | -4.3651322762456503e-07 | 3.7339328e-07 | 0.0 | 20.938860082853388 | -0.5348672270774841 | 20.610794 | -0.013108958690914031 | -0.36166972 | 0.014190837 | 20.934616 | -0.09105875752639689 | 0.026959075 | 0.32711947 | 20.067835 | 0.010476073807142064 | -0.9150356 | 0.32711947 | -6.450095 | 159.08374 | 2.5680106 | -0.6886086463928223 | 20.661052845931597 | 108.46986 | 2.1231031 | -1.1473873853683472 | 1.9929105 | 1.9060571825344517 | -0.4903980049570771 | -0.15208820165614972 | 2.1212947 | 2.637362501364926 | 3.216868859449929 | 3.107170100412025 | 2.1212947 | -0.44875627756118774 | -1.4166113138198853 | -0.40134233236312866 | 138 | 1 | 0 | 0.004700138418892006 | -0.0017896118250197454 | 1.3442158 | -143.02405261900319 | 54.66209816691588 | -17.310021738871935 | 64.385994 | 7.738775790567222e-07 | 3.7339328e-07 | 154.089134776509 | 0 | -0.4361392557621002 | 2.123614686399606 | -1.2804145812988281 | 5266.821 | nan | nan | nan | -13.980939858346646 | -241.322783466562 | -112.49946999755836 |
| 1 | 0.30908957284836036 | 0.2261170869376632 | 0.30842259877311534 | 0.176280263594307 | 0.09970631382205172 | 10.069992065429688 | 0.5896989703178406 | -0.9664415121078491 | -0.9518471360206604 | 37.240967 | -2.2831375342149955e-07 | 2.49317e-07 | 0.0 | 21.769605166840982 | -0.801622748374939 | 20.222652 | -0.013217448221518976 | -1.7598503 | 0.011413363 | 21.307426 | 0.2680249694291372 | -1.0386255 | 0.24083452 | 19.243824 | -0.13966843269274323 | -2.5623941 | 0.24083452 | -0.91259795 | 169.44246 | 1.0347817 | -0.32748517394065857 | 21.396662669202907 | 558.4033 | 0.8450456 | -0.21192379295825958 | 0.86665446 | -3.1047273926896426 | -2.7124202720419555 | -2.542487626107496 | 1.4928615 | 1.1050811506348799 | -1.871713888922517 | -2.04588855812214 | 1.4928615 | -0.3413775563240051 | -0.13905183970928192 | -0.8814153671264648 | 212 | 1 | 0 | -1.1660510794203147 | -1.1704777679639904 | 0.89754117 | -222.0501127897472 | 41.38527019482137 | -3.5979765713472083 | 78.53204 | 4.2180988179474246e-07 | 2.49317e-07 | 225.90249802613027 | 0 | -0.7138696312904358 | 0.8677262727803007 | -1.077961802482605 | 4132.9897 | nan | nan | nan | -64.76429401098572 | -249.0524176755581 | 44.549935511279955 |
| 2 | 0.040653863770659916 | 0.03188868360172066 | 0.04180280722924421 | 0.023700606699203153 | 0.013114149603438681 | 9.613767623901367 | -0.1432933509349823 | -1.0196176767349243 | -0.6505561470985413 | 27.468527 | 9.93141102529504e-07 | 5.270746e-07 | 0.0 | 21.241844522741097 | -0.5965235829353333 | 20.921713 | -0.029182178287689993 | -0.3228382 | 0.01705969 | 21.876608 | 0.38537958340209455 | 0.20757976 | 0.4235812 | 21.28318 | 1.0115375512029108 | -0.99390167 | 0.4235812 | -8.830861 | 175.76826 | 2.0586061 | -0.7592963576316833 | 20.51568014237018 | 118.69824 | 1.196 | -0.7398169040679932 | 1.1982795 | -1.6438476299687612 | -2.044957683093608 | -1.7305400665725954 | 2.8642974 | 1.322617557411089 | -0.519326655124296 | -0.5989357582041593 | 2.8642974 | -1.3291157484054565 | -0.7577531337738037 | -0.45060980319976807 | 252 | 1 | 0 | 1.5601152190393899 | 1.554470646021109 | 1.8974684 | -174.58395850876306 | 12.917886544408068 | -27.197472653752673 | 75.42295 | -1.738821925276305e-07 | 5.270746e-07 | 177.1613188032741 | 0 | -0.6941993832588196 | 1.2002945213596574 | -0.5894879698753357 | 4637.9014 | nan | nan | nan | 31.915626870159116 | -254.29642034774957 | -98.61775218664684 |
| 3 | 0.7877962999055037 | 0.5726781831841866 | 0.7836102802990144 | 0.4485485017244748 | 0.25412783867919475 | 9.8711519241333 | 1.162867546081543 | -0.7159809470176697 | -0.6287623643875122 | 34.62386 | 6.854075293976649e-08 | 7.639342e-08 | 0.0 | 20.79343262014924 | -1.236360788345337 | 19.04199 | 0.00854874852791074 | -2.3326683 | 0.005850956 | 19.920134 | -0.005622249308989237 | -1.6512849 | 0.09372754 | 18.088743 | -0.04331449085765518 | -3.1099238 | 0.09372754 | -14.482033 | 160.58708 | 0.94072235 | 0.7711513042449951 | 21.80299225153633 | 876.2868 | 0.92662406 | -0.07349321991205215 | 0.95272523 | 0.054731965395574934 | -0.3829754121816991 | -0.12157731062280257 | 0.53407407 | 0.6418210512826112 | 0.5179379203937897 | 0.16962703533504497 | 0.53407407 | -0.9232337474822998 | -0.6347827315330505 | -1.0434234142303467 | 281 | 1 | 0 | -0.24483446567030384 | -0.25177373072009146 | 0.2750163 | -131.59610686320977 | 46.37566245119917 | -36.03787463886429 | 58.814594 | 3.7359391102072234e-08 | 7.639342e-08 | 144.10748008978362 | 0 | 0.010916919447481632 | 0.9538811072032849 | -1.0917985439300537 | 4282.4487 | nan | nan | nan | -43.91235726362427 | -298.99747247914627 | 38.90182804530409 |
| 4 | 0.13204413245379326 | 0.10562465807915085 | 0.1371534826791068 | 0.07738767519745451 | 0.042594881436707505 | 9.037848472595215 | -0.20741142332553864 | -0.2963399291038513 | 0.24989141523838043 | 27.754452 | 3.672289535219167e-07 | 4.3264754e-07 | 0.0 | 21.63436699581625 | -0.9348768591880798 | 20.762663 | -0.0013426168529036332 | -0.9759861 | 0.015354784 | 21.672022 | 0.4177469420941861 | -0.51724565 | 0.36540693 | 20.407366 | 0.2875173851348014 | -1.5919065 | 0.36540693 | -6.714385 | 176.97495 | 2.1116366 | -0.6755844354629517 | 21.027297422390884 | 203.31184 | 1.8348202 | -1.142288327217102 | 1.8366443 | 0.2197378023917316 | -1.2259053978924448 | -1.02247116836483 | 2.41159 | 1.66267235620017 | 1.144517339975177 | 1.067175358322312 | 2.41159 | -0.6697758436203003 | -0.6329840421676636 | -1.5521866083145142 | 343 | 1 | 0 | 2.2433125652881225 | 2.238601418881787 | 1.5575311 | -210.51297254829456 | 11.124849238363767 | -24.817751499653514 | 78.14718 | -7.645186432301977e-08 | 4.3264754e-07 | 212.2625606912201 | 0 | -0.3810194134712219 | 1.8352900976292204 | -0.6407454609870911 | 4914.369 | nan | nan | nan | -8.48732751191461 | -211.68435438026214 | -55.59752034953253 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 1,164 | 0.019025284676619746 | 0.015117211031154319 | 0.019686932095396074 | 0.011131666999152821 | 0.006137188605361208 | 10.373172760009766 | 1.5368380546569824 | -1.5263926982879639 | -0.673753559589386 | 39.989857 | -2.514573920310201e-07 | 4.0399456e-07 | 0.0 | 21.230698985230248 | -1.2268792390823364 | 20.69277 | -0.006136069764179247 | -0.54691136 | 0.014802344 | 22.025711 | 0.8299667035764402 | -0.054642305 | 0.3470864 | 20.100964 | 0.04999640531206987 | -1.1908631 | 0.3470864 | -10.55544 | 156.8341 | 1.8550684 | -0.6782917976379395 | 20.185909478706662 | 141.69197 | 0.798 | 0.3099588453769684 | 0.80682814 | 1.8727959735562256 | 0.3528067027517523 | 0.5241191460758158 | 2.2718804 | 1.657140857015031 | 2.475683344755806 | 2.3005029186373935 | 2.2718804 | -0.6692771315574646 | 0.04717090725898743 | -1.0167276859283447 | 99731 | 1 | 0 | -1.8038561145794871 | -1.80952973403217 | 1.4543804 | -159.30081213760624 | 68.16420594881328 | -32.287480777554315 | 58.55993 | -8.166342547243272e-07 | 4.0399456e-07 | 176.25433082705823 | 0 | -0.643153190612793 | 0.8070930497545803 | -0.7373723983764648 | 4771.282 | nan | nan | nan | 78.74606945448743 | -255.83754148145218 | 17.808940561402192 |
| 1,165 | 0.11785906487249752 | 0.08847483112601966 | 0.11882245467274986 | 0.06779467873028361 | 0.03801905318467662 | 9.395322799682617 | -0.3845840394496918 | -0.28358957171440125 | -0.48085200786590576 | 34.802338 | 9.918108029871799e-08 | 1.2833371e-07 | 0.0 | 21.730687168195804 | -0.7610273361206055 | 19.584963 | 0.0065751865905664285 | -2.2407725 | 0.007908253 | 20.062742 | -0.20591638105879556 | -1.5808507 | 0.1435723 | 19.184309 | 0.3899514815920368 | -3.0041256 | 0.1435723 | -11.4430685 | 163.64268 | 1.1658815 | -0.9921388030052185 | 20.977941305794033 | 803.1406 | 1.433 | -1.1456114053726196 | 1.4167645 | -0.7985102470481145 | -1.2350411854691319 | -1.0666535865725877 | 0.83854187 | 0.9481371511247441 | 0.10609397613329813 | -0.014613976378601738 | 0.83854187 | -0.9093115329742432 | -0.06070816144347191 | -0.573256254196167 | 99823 | 1 | 0 | 0.6270305330302726 | 0.6225237923805556 | 0.46200135 | -208.67652152432527 | 61.24792880191641 | -44.021647514337545 | 63.986168 | -1.9273868544824463e-07 | 1.2833371e-07 | 221.8898485012178 | 0 | -0.5603996515274048 | 1.446258238190986 | -0.6158600449562073 | 4276.7935 | nan | nan | nan | 6.244157910757682 | -225.91754656015348 | -22.142693836095198 |
| 1,166 | 1.917877604633994 | 1.3702206129213375 | 1.8937630206087055 | 1.0859833201809104 | 0.6186701950432238 | 9.400785446166992 | 0.5861782431602478 | -0.661990225315094 | -0.446218341588974 | 28.715738 | -4.908052626167452e-07 | 4.5137742e-07 | 0.0 | 21.56765254830313 | -1.0741389989852905 | 20.798689 | -0.005518799886512156 | -2.133665 | 0.015706312 | 22.023201 | 0.09706545298345842 | -1.5352793 | 0.3772023 | 20.511465 | 0.7137742476844009 | -2.8559453 | 0.3772023 | -10.957019 | 172.46034 | 1.279352 | -0.9261223077774048 | 22.189399202694215 | 671.83466 | 1.323 | -0.4879607856273651 | 1.3253865 | 5.462758179344159 | 5.667542559168328 | 5.871416168223197 | 2.502292 | -2.843550123947125 | 2.409661008791584 | 2.2750541663028017 | 2.502292 | 0.23867693543434143 | -1.0438926219940186 | -1.0675371885299683 | 99881 | 1 | 0 | -1.883078373748392 | -1.8879365077565704 | 1.6249586 | -200.34070153304094 | 26.516403301143548 | -39.12458260932041 | 71.24494 | 1.7179552430969074e-07 | 4.5137742e-07 | 205.84034905511947 | 0 | -0.30648577213287354 | 1.3302323661360405 | 0.5969148278236389 | 4453.539 | nan | nan | nan | 45.99363716354691 | -245.2196565089809 | -10.463755036288688 |
| 1,167 | 0.3890935817655473 | 0.3459109855134188 | 0.42844236806758407 | 0.2332652879275749 | 0.12551405863404752 | 8.76700210571289 | 1.2602565288543701 | -0.6482102274894714 | -0.646274745464325 | 18.708971 | -1.1252965856256632e-07 | 4.4515681e-07 | 0.0 | 21.967123504012505 | -1.1567636728286743 | 20.788153 | -0.0028946091431594823 | -1.521986 | 0.015590355 | 20.725286 | -0.3056262783830847 | -1.3646538 | 0.3733 | 20.2418 | -0.16204777931782613 | -1.7965397 | 0.3733 | -19.303923 | 178.78328 | 2.6245642 | -0.3065233826637268 | 21.496632381861513 | 296.85895 | 2.3255537 | 0.10349282622337341 | 2.2348108 | -0.9703733499833618 | -1.8985779016318194 | -1.6164166274595297 | 2.4722178 | 1.6569354981820585 | 0.28716138658722357 | 0.15742234829525623 | 2.4722178 | -0.09991137683391571 | 0.01162821426987648 | -0.6298919320106506 | 99944 | 1 | 0 | -1.469024973955347 | -1.4730667784191478 | 1.6025645 | -233.4515586679823 | 4.958240307345907 | -81.78993982121428 | 68.41039 | -8.61161514396646e-07 | 4.4515681e-07 | 247.41424503737377 | 0 | -0.13593457639217377 | 2.32588572372793 | -0.7227007746696472 | 6840.3525 | nan | nan | nan | 65.61290171740593 | -354.48857930707965 | -69.47010348297734 |
| 1,168 | 0.13128025060982007 | 0.10877511186828413 | 0.1389290640965563 | 0.07761901232932501 | 0.042348467938651636 | 8.829378128051758 | 0.945320188999176 | -1.3487151861190796 | -0.32563573122024536 | 35.68073 | -6.829164901717445e-08 | 5.0387865e-07 | 0.0 | 21.449059479615702 | -1.5585298538208008 | 20.904022 | -0.004349176003901913 | -0.6494634 | 0.01665563 | 21.971952 | 0.678119222946501 | -0.29415557 | 0.40957612 | 20.778925 | 0.42905685318463965 | -1.1768098 | 0.40957612 | -13.799286 | 159.73665 | 2.465999 | -0.06979773193597794 | 21.024777711937936 | 144.35234 | 2.104846 | -0.6132096648216248 | 2.0921621 | -2.4980094064001293 | -2.2022274170596026 | -1.9733394462256058 | 2.7541013 | 0.4840052154049758 | -1.2745613005915613 | -1.501391448026907 | 2.7541013 | -0.40418189764022827 | -0.7111912369728088 | -0.6041487455368042 | 99991 | 1 | 0 | -0.46944864982128426 | -0.4745794854764945 | 1.8139632 | -177.56058760928536 | 65.5525804310451 | -46.48781414288353 | 58.605503 | 4.792514094889688e-07 | 5.0387865e-07 | 194.90002549283216 | 0 | -0.5130423903465271 | 2.1051179373093634 | -0.10513915121555328 | 5345.2173 | nan | nan | nan | -31.301481977818145 | -304.94776329404436 | -3.899390631479074 |