csiborgtools/notebooks/flow/reconstruction_comparison.ipynb

1668 lines
161 KiB
Plaintext
Raw Normal View History

{
"cells": [
{
"cell_type": "code",
2024-09-17 11:53:42 +02:00
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"# Copyright (C) 2024 Richard Stiskalek\n",
"# This program is free software; you can redistribute it and/or modify it\n",
"# under the terms of the GNU General Public License as published by the\n",
"# Free Software Foundation; either version 3 of the License, or (at your\n",
"# option) any later version.\n",
"#\n",
"# This program is distributed in the hope that it will be useful, but\n",
"# WITHOUT ANY WARRANTY; without even the implied warranty of\n",
"# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n",
"# Public License for more details.\n",
"#\n",
"# You should have received a copy of the GNU General Public License along\n",
"# with this program; if not, write to the Free Software Foundation, Inc.,\n",
"# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n",
2024-09-17 11:26:04 +02:00
"from os.path import exists\n",
"import numpy as np\n",
"import matplotlib.pyplot as plt\n",
"from corner import corner\n",
"from getdist import plots\n",
"from astropy.coordinates import angular_separation\n",
"import scienceplots\n",
"from os.path import exists\n",
"import seaborn as sns\n",
"\n",
"\n",
"from reconstruction_comparison import *\n",
"\n",
"%load_ext autoreload\n",
"%autoreload 2\n",
"%matplotlib inline\n",
"\n",
"paths = csiborgtools.read.Paths(**csiborgtools.paths_glamdring)\n",
"fdir = \"/mnt/extraspace/rstiskalek/csiborg_postprocessing/peculiar_velocity\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Quick checks"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"catalogue = \"CF4_TFR_i\"\n",
"simname = \"Carrick2015\"\n",
"zcmb_max=0.05\n",
"sample_beta = None\n",
"sample_alpha = True\n",
"\n",
"fname_bayes = paths.flow_validation(\n",
" fdir, simname, catalogue, inference_method=\"bayes\",\n",
" sample_alpha=sample_alpha, sample_beta=sample_beta,\n",
" zcmb_max=zcmb_max)\n",
"\n",
"fname_mike = paths.flow_validation(\n",
" fdir, simname, catalogue, inference_method=\"mike\",\n",
" sample_alpha=sample_alpha, sample_beta=sample_beta,\n",
" zcmb_max=zcmb_max)\n",
"\n",
"\n",
"X = []\n",
"labels = [\"Full posterior\", \"Delta posterior\"]\n",
"for i, fname in enumerate([fname_bayes, fname_mike]):\n",
" samples = get_samples(fname)\n",
" if i == 1:\n",
" print(samples.keys())\n",
"\n",
" X.append(samples_to_getdist(samples, labels[i]))\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"params = [f\"a_{catalogue}\", f\"b_{catalogue}\", f\"c_{catalogue}\", f\"e_mu_{catalogue}\",\n",
" \"Vmag\", \"l\", \"b\", \"sigma_v\", \"beta\", f\"alpha_{catalogue}\"]\n",
"# params = [\"beta\", f\"a_{catalogue}\", f\"b_{catalogue}\", f\"e_mu_{catalogue}\"]\n",
"# params = [\"Vmag\", \"l\", \"b\", \"sigma_v\", \"beta\", f\"mag_cal_{catalogue}\", f\"alpha_cal_{catalogue}\", f\"beta_cal_{catalogue}\", f\"e_mu_{catalogue}\"]\n",
"\n",
"\n",
"g = plots.get_subplot_plotter()\n",
"g.settings.figure_legend_frame = False\n",
"g.settings.alpha_filled_add = 0.75\n",
"\n",
"g.triangle_plot(X, params=params, filled=True, legend_loc='upper right')\n",
"plt.gcf().suptitle(catalogue_to_pretty(catalogue), y=1.025)\n",
"plt.gcf().tight_layout()\n",
"# plt.gcf().savefig(f\"../../plots/method_comparison_{simname}_{catalogue}.png\", dpi=500, bbox_inches='tight')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# catalogue = [\"LOSS\", \"Foundation\"]\n",
"catalogue = \"CF4_TFR_i\"\n",
"simname = \"IndranilVoid_exp\"\n",
"zcmb_max = 0.05\n",
"sample_alpha = False\n",
"\n",
"fname = paths.flow_validation(\n",
" fdir, simname, catalogue, inference_method=\"mike\",\n",
" sample_mag_dipole=True,\n",
" sample_beta=False,\n",
" sample_alpha=sample_alpha, zcmb_max=zcmb_max)\n",
"\n",
"\n",
"samples = get_samples(fname, convert_Vext_to_galactic=True)\n",
"\n",
"samples, labels, keys = samples_for_corner(samples)\n",
"fig = corner(samples, labels=labels, show_titles=True,\n",
" title_kwargs={\"fontsize\": 12}, smooth=1)\n",
"# fig.savefig(\"../../plots/test.png\", dpi=250)\n",
"fig.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Paper plots"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 0. LOS velocity example"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"fpath = \"/mnt/extraspace/rstiskalek/catalogs/PV/CF4/CF4_TF-distances.hdf5\"\n",
"\n",
"loader_carrick = csiborgtools.flow.DataLoader(\"Carrick2015\", [0], \"CF4_TFR_i\", fpath, paths, ksmooth=0, )\n",
"loader_lilow = csiborgtools.flow.DataLoader(\"Lilow2024\", [0], \"CF4_TFR_i\", fpath, paths, ksmooth=0, )\n",
"loader_cb2 = csiborgtools.flow.DataLoader(\"csiborg2_main\", [i for i in range(20)], \"CF4_TFR_i\", fpath, paths, ksmooth=0, )\n",
"loader_cb2X = csiborgtools.flow.DataLoader(\"csiborg2X\", [i for i in range(20)], \"CF4_TFR_i\", fpath, paths, ksmooth=0, )\n",
"loader_CF4 = csiborgtools.flow.DataLoader(\"CF4\", [i for i in range(20)], \"CF4_TFR_i\", fpath, paths, ksmooth=0, )\n",
"loader_CLONES = csiborgtools.flow.DataLoader(\"CLONES\", [0], \"CF4_TFR_i\", fpath, paths, ksmooth=0, )\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"angdist = angular_separation(\n",
" np.deg2rad(loader_carrick.cat[\"RA\"]), np.deg2rad(loader_carrick.cat[\"DEC\"]),\n",
" np.deg2rad(csiborgtools.clusters[\"Virgo\"].spherical_pos[1]),\n",
" np.deg2rad(csiborgtools.clusters[\"Virgo\"].spherical_pos[2]))\n",
"k = np.argmin(angdist)\n",
"print([loader_carrick.cat[\"RA\"][k], loader_carrick.cat[\"DEC\"][k]])\n",
"print(csiborgtools.clusters[\"Virgo\"].spherical_pos[1:])\n",
"print(csiborgtools.clusters[\"Virgo\"].spherical_pos[0])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"loaders = [loader_carrick, loader_lilow, loader_CF4, loader_cb2, loader_cb2X, loader_CLONES]\n",
"simnames = [\"Carrick2015\", \"Lilow2024\", \"CF4\", \"csiborg2_main\", \"csiborg2X\", \"CLONES\"]\n",
"\n",
"\n",
"with plt.style.context(\"science\"):\n",
" plt.rcParams.update({'font.size': 9})\n",
" plt.figure()\n",
" cols = plt.rcParams['axes.prop_cycle'].by_key()['color']\n",
"\n",
" for i, (simname, loader) in enumerate(zip(simnames, loaders)):\n",
" r = loader.rdist\n",
" vrad = loader.los_radial_velocity[:, k, :]\n",
"\n",
" if simname == \"Carrick2015\":\n",
" vrad *= 0.43\n",
"\n",
" if len(vrad) > 1:\n",
" ylow, yhigh = np.percentile(vrad, [16, 84], axis=0)\n",
" plt.fill_between(r, ylow, yhigh, alpha=0.66, color=cols[i],\n",
" label=simname_to_pretty(simname))\n",
" else:\n",
" plt.plot(r, vrad[0], label=simname_to_pretty(simname), c=cols[i])\n",
"\n",
" plt.xlabel(r\"$r ~ [\\mathrm{Mpc} / h]$\")\n",
" plt.ylabel(r\"$V_{\\rm rad} ~ [\\mathrm{km} / \\mathrm{s}]$\")\n",
"\n",
" plt.xlim(0, 90)\n",
" plt.ylim(-1000, 1000)\n",
" plt.legend(ncols=2, fontsize=\"small\")\n",
" plt.axvline(12.045, zorder=0, c=\"k\", ls=\"--\", alpha=0.75)\n",
"\n",
" plt.tight_layout()\n",
" plt.savefig(\"../../plots/LOS_example.pdf\", dpi=450, bbox_inches='tight')\n",
" plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 1. Evidence comparison"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"zcmb_max = 0.05\n",
"\n",
"sims = [\"Carrick2015\", \"Lilow2024\", \"csiborg2_main\", \"csiborg2X\", \"CLONES\", \"CF4\",]\n",
"catalogues = [\"LOSS\", \"Foundation\", \"2MTF\", \"SFI_gals\", \"CF4_TFR_i\", \"CF4_TFR_w1\"]\n",
"\n",
"y_BIC = np.full((len(catalogues), len(sims)), np.nan)\n",
"y_lnZ = np.full_like(y_BIC, np.nan)\n",
"\n",
"for i, catalogue in enumerate(catalogues):\n",
" for j, simname in enumerate(sims):\n",
" fname = paths.flow_validation(\n",
" fdir, simname, catalogue, inference_method=\"mike\",\n",
" sample_alpha=simname != \"IndranilVoid_exp\",\n",
" zcmb_max=zcmb_max)\n",
"\n",
" # y_BIC[i, j] = get_gof(\"BIC\", fname)z\n",
" y_lnZ[i, j] = get_gof(\"neg_lnZ_harmonic\", fname)\n",
"\n",
" y_lnZ[i] -= y_lnZ[i].min()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"with plt.style.context('science'):\n",
" plt.rcParams.update({'font.size': 9})\n",
" figwidth = 8.3\n",
" fig, axs = plt.subplots(2, 3, figsize=(figwidth, 0.5 * figwidth))\n",
" fig.subplots_adjust(hspace=0)\n",
"\n",
" x = np.arange(len(sims))\n",
" y = y_lnZ\n",
" for n in range(len(catalogues)):\n",
" i, j = n // 3, n % 3\n",
" ax = axs[i, j]\n",
" ax.text(0.1, 0.875, catalogue_to_pretty(catalogues[n]),\n",
" transform=ax.transAxes, #fontsize=\"small\",\n",
" verticalalignment='center', horizontalalignment='left',\n",
" bbox=dict(facecolor='white', alpha=0.5),\n",
" )\n",
" ax.scatter(x, y[n], c=\"k\", s=7.5)\n",
"\n",
" y_min, y_max = ax.get_ylim()\n",
" y_offset = (y_max - y_min) * 0.075 # Adjust the fraction (0.05) as needed\n",
"\n",
" for k, txt in enumerate(y[n]):\n",
" ax.text(x[k], y[n, k] + y_offset, f\"({y[n, k]:.1f})\",\n",
" ha='center', fontsize=\"small\")\n",
"\n",
" ax.set_ylim(y_min, y_max + 2 * y_offset)\n",
"\n",
" for i in range(3):\n",
" axs[1, i].set_xticks(\n",
" np.arange(len(sims)),\n",
" [simname_to_pretty(sim) for sim in sims], rotation=35)\n",
" axs[0, i].set_xticks([], [])\n",
"\n",
" for i in range(2):\n",
" for j in range(3):\n",
" axs[i, j].set_xlim(-0.75, len(sims) - 0.25)\n",
"\n",
" axs[i, j].tick_params(axis='x', which='major', top=False)\n",
" axs[i, j].tick_params(axis='x', which='minor', top=False, length=0)\n",
" axs[i, j].tick_params(axis='y', which='minor', length=0)\n",
"\n",
" axs[i, 0].set_ylabel(r\"$-\\Delta \\ln \\mathcal{Z}$\")\n",
"\n",
" fig.tight_layout()\n",
" fig.savefig(f\"../../plots/lnZ_comparison.pdf\", dpi=500, bbox_inches='tight')\n",
" fig.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 2. Dependence of the evidence on smoothing scale"
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": null,
"metadata": {},
2024-09-17 11:26:04 +02:00
"outputs": [],
"source": [
"zcmb_max = 0.05\n",
"\n",
"ksmooth = [0, 1, 2, 3, 4]\n",
"scales = [0, 2, 4, 6, 8]\n",
"sims = [\"Carrick2015\", \"csiborg2_main\"]\n",
"catalogues = [\"2MTF\", \"SFI_gals\", \"CF4_TFR_i\"]\n",
"\n",
"y = np.full((len(sims), len(catalogues), len(ksmooth)), np.nan)\n",
"for i, simname in enumerate(sims):\n",
" for j, catalogue in enumerate(catalogues):\n",
" for n, k in enumerate(ksmooth):\n",
" fname = paths.flow_validation(\n",
" fdir, simname, catalogue, inference_method=\"mike\",\n",
" sample_alpha=True, smooth=k,\n",
" zcmb_max=zcmb_max)\n",
" if not exists(fname):\n",
" raise FileNotFoundError(fname)\n",
"\n",
" y[i, j, n] = get_gof(\"neg_lnZ_harmonic\", fname)\n",
"\n",
" y[i, j, :] -= y[i, j, :].min()"
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": null,
"metadata": {},
2024-09-17 11:26:04 +02:00
"outputs": [],
"source": [
"for i, simname in enumerate(sims):\n",
" for j, catalogue in enumerate(catalogues):\n",
" print(simname, catalogue, y[i, j, -1])"
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": null,
"metadata": {},
2024-09-17 11:26:04 +02:00
"outputs": [],
"source": [
"with plt.style.context('science'):\n",
" plt.rcParams.update({'font.size': 9})\n",
" cols = plt.rcParams['axes.prop_cycle'].by_key()['color']\n",
" plt.figure()\n",
"\n",
" ls = [\"-\", \"--\", \"-.\", \":\"]\n",
" for i, simname in enumerate(sims):\n",
" for j, catalogue in enumerate(catalogues):\n",
" plt.plot(scales, y[i, j], marker='o', ms=2.5, ls=ls[i],\n",
" label=catalogue_to_pretty(catalogue) if i == 0 else None, c=cols[j],)\n",
"\n",
" plt.xlabel(r\"$R_{\\rm smooth} ~ [\\mathrm{Mpc} / h]$\")\n",
" plt.ylabel(r\"$-\\Delta \\ln \\mathcal{Z}$\")\n",
" plt.legend()\n",
"\n",
" plt.tight_layout()\n",
" plt.savefig(\"../../plots/smoothing_comparison.pdf\", dpi=450)\n",
" plt.show()\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 3. External flow consistency"
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": null,
"metadata": {},
2024-09-17 11:26:04 +02:00
"outputs": [],
"source": [
"sims = [\"Carrick2015\", \"Lilow2024\", \"csiborg2_main\", \"csiborg2X\", \"CF4\", \"CLONES\"]\n",
"# sims = [\"Carrick2015\", \"Lilow2024\", \"CF4\", \"csiborg2_main\", \"csiborg2X\"]\n",
"# cats = [[\"LOSS\", \"Foundation\"], \"2MTF\", \"SFI_gals\", \"CF4_TFR_i\", \"CF4_TFR_w1\"]\n",
"cats = [\"2MTF\", \"SFI_gals\", \"CF4_TFR_i\", \"CF4_TFR_w1\"]\n",
"# cats = [\"2MTF\", \"SFI_gals\", \"CF4_TFR_not2MTForSFI_i\"]\n",
"\n",
"X = {}\n",
"\n",
"for sim in sims:\n",
" for cat in cats:\n",
" fname = paths.flow_validation(\n",
" fdir, sim, cat, inference_method=\"bayes\",\n",
" sample_alpha=True, zcmb_max=0.05)\n",
"\n",
" if not exists(fname):\n",
" raise FileNotFoundError(fname)\n",
"\n",
" with File(fname, 'r') as f:\n",
" X[f\"{sim}_{cat}\"] = np.linalg.norm(f[f\"samples/Vext\"][...], axis=1)"
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": null,
"metadata": {},
2024-09-17 11:26:04 +02:00
"outputs": [],
"source": [
"with plt.style.context('science'):\n",
" plt.rcParams.update({'font.size': 9})\n",
"\n",
"\n",
" fig, axs = plt.subplots(2, 2, figsize=(3.5, 2.65 * 1.1))\n",
" fig.subplots_adjust(hspace=0, wspace=0)\n",
"\n",
" for k, cat in enumerate(cats):\n",
" i, j = k // 2, k % 2\n",
" ax = axs[i, j]\n",
"\n",
" for sim in sims:\n",
" sns.kdeplot(X[f\"{sim}_{cat}\"], fill=True, bw_adjust=0.75, ax=ax,\n",
" label=simname_to_pretty(sim) if i == 0 else None)\n",
"\n",
" ax.text(0.725, 0.85, catalogue_to_pretty(cat),\n",
" transform=ax.transAxes, fontsize=\"small\",\n",
" verticalalignment='center', horizontalalignment='center',\n",
" bbox=dict(facecolor='white', alpha=0.5, edgecolor='none'))\n",
"\n",
" ax.set_ylabel(None)\n",
" ax.set_yticklabels([])\n",
" ax.set_xlim(0)\n",
"\n",
" handles, labels = axs[0, 0].get_legend_handles_labels()\n",
" fig.legend(handles, labels, loc='upper center', bbox_to_anchor=(0.5, 1.1),\n",
" ncol=3)\n",
"\n",
" for i in range(2):\n",
" axs[-1, i].set_xlabel(r\"$|\\mathbf{V}_{\\rm ext}| ~ [\\mathrm{km} / \\mathrm{s}]$\")\n",
" axs[i, 0].set_ylabel(\"Normalised PDF\")\n",
"\n",
" fig.tight_layout()\n",
" fig.savefig(f\"../../plots/Vext_comparison.pdf\", dpi=450)\n",
" fig.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 4. What $\\beta$ is preferred by the data? "
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": null,
"metadata": {},
2024-09-17 11:26:04 +02:00
"outputs": [],
"source": [
"sims = [\"Lilow2024\", \"csiborg2_main\", \"csiborg2X\", \"CF4\", \"CLONES\"]\n",
"cats = [\"LOSS\", \"Foundation\", \"2MTF\", \"SFI_gals\", \"CF4_TFR_i\", \"CF4_TFR_w1\"]\n",
"# cats = [\"2MTF\", \"SFI_gals\", \"CF4_TFR_not2MTForSFI_i\"]\n",
"\n",
"X = {}\n",
"for sim in sims:\n",
" for cat in cats:\n",
" fname = paths.flow_validation(\n",
" fdir, sim, cat, inference_method=\"bayes\",\n",
" sample_alpha=True, zcmb_max=0.05, sample_beta=True)\n",
"\n",
" if not exists(fname):\n",
" raise FileNotFoundError(fname)\n",
"\n",
" with File(fname, 'r') as f:\n",
" X[f\"{sim}_{cat}\"] = f[f\"samples/beta\"][...]"
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": null,
"metadata": {},
2024-09-17 11:26:04 +02:00
"outputs": [],
"source": [
"with plt.style.context('science'):\n",
" plt.rcParams.update({'font.size': 9})\n",
"\n",
"\n",
" fig, axs = plt.subplots(3, 2, figsize=(3.5, 2.65 * 1.8))\n",
" fig.subplots_adjust(hspace=0, wspace=0)\n",
"\n",
" for k, cat in enumerate(cats):\n",
" i, j = k // 2, k % 2\n",
" ax = axs[i, j]\n",
"\n",
" for sim in sims:\n",
" sns.kdeplot(X[f\"{sim}_{cat}\"], fill=True, bw_adjust=0.75, ax=ax,\n",
" label=simname_to_pretty(sim) if i == 0 else None)\n",
"\n",
" ax.text(0.1, 0.85, catalogue_to_pretty(cat),\n",
" transform=ax.transAxes, fontsize=\"small\",\n",
" verticalalignment='center', horizontalalignment='left',\n",
" bbox=dict(facecolor='white', alpha=0.5, edgecolor='k')\n",
" )\n",
"\n",
" ax.axvline(1, c=\"k\", ls=\"--\", alpha=0.75)\n",
" ax.set_ylabel(None)\n",
" ax.set_yticklabels([])\n",
"\n",
" handles, labels = axs[0, 0].get_legend_handles_labels()\n",
" fig.legend(handles, labels, loc='upper center', bbox_to_anchor=(0.5, 1.075),\n",
" ncol=3)\n",
"\n",
" # for i in range(3):\n",
" for j in range(2):\n",
" axs[-1, j].set_xlabel(r\"$\\beta$\")\n",
"\n",
" for i in range(3):\n",
" axs[i, 0].set_ylabel(\"Normalised PDF\")\n",
"\n",
" fig.tight_layout()\n",
" fig.savefig(f\"../../plots/beta_comparison.pdf\", dpi=450)\n",
" fig.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 5. Bulk flow in the simulation rest frame "
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": null,
"metadata": {},
2024-09-17 11:26:04 +02:00
"outputs": [],
"source": [
"sims = [\"Carrick2015\", \"Lilow2024\", \"csiborg2_main\", \"csiborg2X\", \"CLONES\", \"CF4\"]\n",
"\n",
"\n",
"with plt.style.context('science'):\n",
" plt.rcParams.update({'font.size': 9})\n",
" cols = plt.rcParams['axes.prop_cycle'].by_key()['color']\n",
"\n",
" plt.figure()\n",
" for i, sim in enumerate(sims):\n",
" r, B = get_bulkflow_simulation(sim, convert_to_galactic=True)\n",
" B = B[..., 0]\n",
"\n",
" if sim == \"Carrick2015\":\n",
" B *= 0.43\n",
"\n",
" if sim in [\"Carrick2015\", \"Lilow2024\", \"CLONES\"]:\n",
" plt.plot(r, B[0], label=simname_to_pretty(sim), color=cols[i])\n",
" else:\n",
" ylow, yhigh = np.percentile(B, [16, 84], axis=0)\n",
" plt.fill_between(r, ylow, yhigh, alpha=0.5,\n",
" label=simname_to_pretty(sim), color=cols[i])\n",
"\n",
" plt.xlabel(r\"$R ~ [\\mathrm{Mpc} / h]$\")\n",
" plt.ylabel(r\"$|\\mathbf{B}| ~ [\\mathrm{km} / \\mathrm{s}]$\")\n",
" plt.xlim(5, 200)\n",
" plt.legend(ncols=2)\n",
"\n",
" plt.tight_layout()\n",
" plt.savefig(\"../../plots/bulkflow_simulations_restframe.pdf\", dpi=450)\n",
" plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 6. Bulk flow in the CMB frame"
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": null,
"metadata": {},
2024-09-17 11:26:04 +02:00
"outputs": [],
"source": [
"sims = [\"Carrick2015\", \"Lilow2024\", \"csiborg2_main\", \"csiborg2X\", \"CLONES\", \"CF4\"]\n",
"# cats = [[\"LOSS\", \"Foundation\"], \"2MTF\", \"SFI_gals\", \"CF4_TFR_i\"]\n",
"cats = [\"2MTF\", \"SFI_gals\", \"CF4_TFR_i\", \"CF4_TFR_w1\"]\n",
"\n",
"\n",
"data = {}\n",
"for sim in sims:\n",
" for cat in cats:\n",
" fname = paths.flow_validation(\n",
" fdir, sim, cat, inference_method=\"bayes\",\n",
" sample_alpha=True, zcmb_max=0.05)\n",
" data[f\"{sim}_{cat}\"] = get_bulkflow(fname, sim)\n",
"\n",
"def get_ax_centre(ax):\n",
" # Get the bounding box of the specific axis in relative figure coordinates\n",
" bbox = ax.get_position()\n",
"\n",
" # Extract the position and size of the axis\n",
" x0, y0, width, height = bbox.x0, bbox.y0, bbox.width, bbox.height\n",
"\n",
" # Calculate the center of the axis\n",
" center_x = x0 + width / 2\n",
" center_y = y0 + height / 2\n",
" return center_x, center_y"
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": null,
"metadata": {},
2024-09-17 11:26:04 +02:00
"outputs": [],
"source": [
"with plt.style.context('science'):\n",
" plt.rcParams.update({'font.size': 9})\n",
" nrows = len(sims)\n",
" ncols = 3\n",
"\n",
" figwidth = 8.3\n",
" fig, axs = plt.subplots(nrows, ncols, figsize=(figwidth, 1.25 * figwidth), sharex=True, )\n",
" cols = plt.rcParams['axes.prop_cycle'].by_key()['color']\n",
" # fig.suptitle(f\"Calibrated against {catalogue}\")\n",
"\n",
" for i, sim in enumerate(sims):\n",
" for j, catalogue in enumerate(cats):\n",
" r, B = data[f\"{sim}_{catalogue}\"]\n",
" c = cols[j]\n",
" for n in range(3):\n",
" ylow, ymed, yhigh = np.percentile(B[..., n], [16, 50, 84], axis=-1)\n",
" axs[i, n].fill_between(\n",
" r, ylow, yhigh, alpha=0.5, color=c, edgecolor=c,\n",
" label=catalogue_to_pretty(catalogue) if i == 1 else None)\n",
"\n",
"\n",
" # CMB-LG velocity\n",
" kwargs = {\"color\": \"mediumblue\", \"alpha\": 0.5, \"zorder\": 10, \"hatch\": \"x\"}\n",
" for n in range(len(sims)):\n",
" axs[n, 0].fill_between([r.min(), 15.], [627 - 22, 627 - 22], [627 + 22, 627 + 22], label=\"CMB-LG\" if n == 0 else None, **kwargs)\n",
" axs[n, 1].fill_between([r.min(), 15.], [276 - 3, 276 - 3], [276 + 3, 276 + 3], **kwargs)\n",
" axs[n, 2].fill_between([r.min(), 15.], [30 - 3, 30 - 3], [30 + 3, 30 + 3], **kwargs)\n",
"\n",
" # LCDM expectation\n",
" Rs,mean,std,mode,p05,p16,p84,p95 = np.load(\"/mnt/users/rstiskalek/csiborgtools/data/BulkFlowPlot.npy\")\n",
" m = Rs < 175\n",
" kwargs = {\"color\": \"black\", \"zorder\": 0, \"hatch\": \"//\", \"alpha\": 0.25}\n",
" for n in range(len(sims)):\n",
" axs[n, 0].fill_between(\n",
" Rs[m], p16[m], p84[m],\n",
" label=r\"$\\Lambda\\mathrm{CDM}$\" if n == 0 else None, **kwargs)\n",
"\n",
" for n in range(3):\n",
" axs[-1, n].set_xlabel(r\"$R ~ [\\mathrm{Mpc} / h]$\")\n",
"\n",
" for n in range(len(sims)):\n",
" axs[n, 0].set_ylabel(r\"$|\\mathbf{B}| ~ [\\mathrm{km} / \\mathrm{s}]$\")\n",
" axs[n, 1].set_ylabel(r\"$\\ell ~ [\\mathrm{deg}]$\")\n",
" axs[n, 2].set_ylabel(r\"$b ~ [\\mathrm{deg}]$\")\n",
"\n",
" for i, sim in enumerate(sims):\n",
" ax = axs[i, -1].twinx()\n",
" ax.set_ylabel(simname_to_pretty(sim), rotation=270, labelpad=7.5)\n",
" ax.set_yticklabels([])\n",
"\n",
" axs[0, 0].set_xlim(r.min(), r.max())\n",
"\n",
" axs[0, 0].legend()\n",
" handles, labels = axs[1, 0].get_legend_handles_labels() # get the labels from the first axis\n",
" fig.legend(handles, labels, loc='upper center', bbox_to_anchor=(0.5, 0.975), ncol=len(cats) + 2)\n",
"\n",
" fig.tight_layout(rect=[0, 0, 0.95, 0.95])\n",
" fig.savefig(f\"../../plots/bulkflow_CMB.pdf\", dpi=450)\n",
" fig.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 8. Full vs Delta comparison"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"catalogue = \"CF4_TFR_i\"\n",
"simname = \"csiborg2X\"\n",
"zcmb_max=0.05\n",
"sample_beta = True\n",
"sample_alpha = True\n",
"\n",
"fname_bayes = paths.flow_validation(\n",
" fdir, simname, catalogue, inference_method=\"bayes\",\n",
" sample_alpha=sample_alpha, sample_beta=sample_beta,\n",
" zcmb_max=zcmb_max)\n",
"\n",
"fname_mike = paths.flow_validation(\n",
" fdir, simname, catalogue, inference_method=\"mike\",\n",
" sample_alpha=sample_alpha, sample_beta=sample_beta,\n",
" zcmb_max=zcmb_max)\n",
"\n",
"\n",
"X = []\n",
"labels = [\"Full posterior\", \"Delta posterior\"]\n",
"for i, fname in enumerate([fname_bayes, fname_mike]):\n",
" samples = get_samples(fname)\n",
" if i == 1:\n",
" print(samples.keys())\n",
"\n",
" X.append(samples_to_getdist(samples, labels[i]))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"params = [f\"a_{catalogue}\", f\"b_{catalogue}\", f\"c_{catalogue}\", f\"e_mu_{catalogue}\",\n",
" \"Vmag\", \"l\", \"b\", \"sigma_v\", \"beta\", f\"alpha_{catalogue}\"]\n",
"# params = [\"beta\", f\"a_{catalogue}\", f\"b_{catalogue}\", f\"e_mu_{catalogue}\"]\n",
"# params = [\"Vmag\", \"l\", \"b\", \"sigma_v\", \"beta\", f\"mag_cal_{catalogue}\", f\"alpha_cal_{catalogue}\", f\"beta_cal_{catalogue}\", f\"e_mu_{catalogue}\"]\n",
"\n",
"with plt.style.context('science'):\n",
" plt.rcParams.update({'font.size': 11})\n",
" g = plots.get_subplot_plotter()\n",
" g.settings.figure_legend_frame = False\n",
" g.settings.alpha_filled_add = 0.75\n",
" g.settings.fontsize = 12\n",
"\n",
" g.triangle_plot(X, params=params, filled=True, legend_loc='upper right')\n",
" # plt.gcf().suptitle(catalogue_to_pretty(catalogue), y=1.025)\n",
" plt.gcf().tight_layout()\n",
" plt.gcf().savefig(f\"../../plots/method_comparison_{simname}_{catalogue}.pdf\", dpi=300, bbox_inches='tight')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Guilhem plots"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Manticore vs linear comparison"
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": null,
"metadata": {},
2024-09-17 11:26:04 +02:00
"outputs": [],
"source": [
"zcmb_max = 0.05\n",
"\n",
"sims = [\"Carrick2015\", \"csiborg2X\"]\n",
"catalogues = [\"LOSS\", \"Foundation\", \"2MTF\", \"CF4_TFR_i\", \"CF4_TFR_w1\"]\n",
"\n",
"y_lnZ = np.full((len(catalogues), len(sims)), np.nan)\n",
"\n",
"for i, catalogue in enumerate(catalogues):\n",
" for j, simname in enumerate(sims):\n",
" fname = paths.flow_validation(\n",
" fdir, simname, catalogue, inference_method=\"mike\",\n",
" sample_alpha=simname != \"IndranilVoid_exp\",\n",
" zcmb_max=zcmb_max)\n",
"\n",
" y_lnZ[i, j] = - get_gof(\"neg_lnZ_harmonic\", fname)\n",
"\n",
" # y_lnZ[i] -= y_lnZ[i].min()"
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": null,
"metadata": {},
2024-09-17 11:26:04 +02:00
"outputs": [],
"source": [
"bayes_factor = y_lnZ[:, 1] - y_lnZ[:, 0]\n",
"\n",
"with plt.style.context('science'):\n",
" plt.rcParams.update({'font.size': 9})\n",
"\n",
" plt.figure()\n",
"\n",
" sns.barplot(x=np.arange(len(catalogues)), y=bayes_factor / np.log(10), color=\"#21456D\")\n",
" plt.xticks(\n",
" np.arange(len(catalogues)),\n",
" [catalogue_to_pretty(cat) for cat in catalogues],\n",
" rotation=35, fontsize=\"small\", minor=False)\n",
" plt.ylabel(r\"$\\log \\left(\\mathcal{Z}_{\\rm Manticore} / \\mathcal{Z}_{\\rm linear}\\right)$\")\n",
" plt.tick_params(axis='x', which='both', bottom=False, top=False)\n",
"\n",
" plt.tight_layout()\n",
" plt.savefig(\"../../plots/manticore_vs_carrick.png\", dpi=450)\n",
" plt.show()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## All possible things"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Dipole magnitude"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"cats = [\"2MTF\", \"SFI_gals\", \"CF4_TFR_i\", \"CF4_TFR_w1\"]\n",
"sim = \"IndranilVoid_gauss\"\n",
"\n",
"X = []\n",
"for cat in cats:\n",
" fname = paths.flow_validation(\n",
" fdir, sim, cat, inference_method=\"mike\",\n",
" sample_mag_dipole=False,\n",
" sample_alpha=False, zcmb_max=0.05)\n",
" \n",
" if not exists(fname):\n",
" raise FileNotFoundError(fname)\n",
"\n",
" samples = get_samples(fname, convert_Vext_to_galactic=False)\n",
"\n",
" # keys = list(samples.keys())\n",
" # for key in keys:\n",
" # if cat in key:\n",
" # value = samples.pop(key)\n",
" # samples[key.replace(f\"_{cat}\",'')] = value\n",
" \n",
" samples = samples_to_getdist(samples, catalogue_to_pretty(cat))\n",
" X.append(samples)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# params = [\"Vmag\", \"l\", \"b\", \"a_dipole_mag\", \"a_dipole_l\", \"a_dipole_b\"]\n",
"params = [\"Vx\", \"Vy\", \"Vz\"]\n",
"# params = [\"Vmag\", \"l\", \"b\"]\n",
"\n",
"with plt.style.context('science'):\n",
" g = plots.get_subplot_plotter()\n",
" g.settings.figure_legend_frame = False\n",
" g.settings.alpha_filled_add = 0.75\n",
"\n",
" g.triangle_plot(X, params=params, filled=True, legend_loc='upper right')\n",
" # plt.gcf().suptitle(catalogue_to_pretty(cat), y=1.025)\n",
" plt.gcf().tight_layout()\n",
" plt.gcf().savefig(f\"../../plots/vext_{sim}.png\", dpi=500, bbox_inches='tight')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Flow | catalogue"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"catalogues = [\"LOSS\", \"Foundation\", \"Pantheon+\", \"2MTF\", \"SFI_gals\"]\n",
"sims = [\"Carrick2015\", \"csiborg2_main\", \"csiborg2X\"]\n",
"params = [\"Vmag\", \"beta\", \"sigma_v\"]\n",
"\n",
"for catalogue in catalogues:\n",
" X = [samples_to_getdist(get_samples(sim, catalogue), sim)\n",
" for sim in sims]\n",
"\n",
" g = plots.get_subplot_plotter()\n",
" g.settings.figure_legend_frame = False\n",
" g.settings.alpha_filled_add = 0.75\n",
"\n",
" g.triangle_plot(X, params=params, filled=True, legend_loc='upper right')\n",
" plt.gcf().suptitle(f'{catalogue}', y=1.025)\n",
" plt.gcf().tight_layout()\n",
2024-07-05 12:28:06 +02:00
" plt.gcf().savefig(f\"../../plots/calibration_{catalogue}.png\", dpi=500, bbox_inches='tight')\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Flow | simulation"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"catalogues = [\"Pantheon+\", \"2MTF\", \"SFI_gals\"]\n",
"sims = [\"Carrick2015\", \"csiborg2_main\", \"csiborg2X\"]\n",
2024-07-05 12:28:06 +02:00
"params = [\"Vmag\", \"l\", \"b\", \"beta\", \"sigma_v\"]\n",
"\n",
"for sim in sims:\n",
" X = [samples_to_getdist(get_samples(sim, catalogue), sim, catalogue)\n",
" for catalogue in catalogues]\n",
"\n",
" g = plots.get_subplot_plotter()\n",
" g.settings.figure_legend_frame = False\n",
" g.settings.alpha_filled_add = 0.75\n",
"\n",
" g.triangle_plot(X, params=params, filled=True, legend_loc='upper right')\n",
" plt.gcf().suptitle(f'{sim}', y=1.025)\n",
" plt.gcf().tight_layout()\n",
" plt.gcf().savefig(f\"../../plots/calibration_{sim}.png\", dpi=500, bbox_inches='tight')\n",
" plt.gcf().show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Stacking vs marginalising CB boxes\n",
"\n",
"#### $V_{\\rm ext}$"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"sim = \"csiborg2X\"\n",
"catalogue = \"2MTF\"\n",
"key = \"Vext\"\n",
"\n",
"X = [get_samples(sim, catalogue, nsim=nsim, convert_Vext_to_galactic=False)[key] for nsim in range(20)]\n",
"Xmarg = get_samples(sim, catalogue, convert_Vext_to_galactic=False)[key]\n",
"\n",
"\n",
"fig, axs = plt.subplots(1, 3, figsize=(15, 5), sharey=True)\n",
"fig.suptitle(f\"{simname_to_pretty(sim)}, {catalogue}\")\n",
"fig.subplots_adjust(wspace=0.0, hspace=0)\n",
"\n",
"for i in range(3):\n",
" for n in range(20):\n",
" axs[i].hist(X[n][:, i], bins=\"auto\", alpha=0.25, histtype='step',\n",
" color='black', linewidth=0.5, density=1, zorder=0,\n",
" label=\"Individual box\" if (n == 0 and i == 0) else None)\n",
"\n",
"axs[i].hist(np.hstack([X[n][:, i] for n in range(20)]), bins=\"auto\",\n",
" histtype='step', color='blue', density=1,\n",
" label=\"Stacked individual boxes\" if i == 0 else None)\n",
"axs[i].hist(Xmarg[:, i], bins=\"auto\", histtype='step', color='red',\n",
" density=1, label=\"Marginalised boxes\" if i == 0 else None)\n",
" \n",
"axs[0].legend(fontsize=\"small\", loc='upper left', frameon=False)\n",
"\n",
"axs[0].set_xlabel(r\"$V_{\\mathrm{ext}, x} ~ [\\mathrm{km} / \\mathrm{s}]$\")\n",
"axs[1].set_xlabel(r\"$V_{\\mathrm{ext}, y} ~ [\\mathrm{km} / \\mathrm{s}]$\")\n",
"axs[2].set_xlabel(r\"$V_{\\mathrm{ext}, z} ~ [\\mathrm{km} / \\mathrm{s}]$\")\n",
"axs[0].set_ylabel(\"Normalized PDF\")\n",
"fig.tight_layout()\n",
"fig.savefig(f\"../../plots/consistency_{sim}_{catalogue}_{key}.png\", dpi=450)\n",
"fig.show()\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### $\\beta$ and others"
]
},
{
"cell_type": "code",
2024-07-03 10:50:21 +02:00
"execution_count": null,
"metadata": {},
2024-07-03 10:50:21 +02:00
"outputs": [],
"source": [
"sim = \"csiborg2_main\"\n",
"catalogue = \"Pantheon+\"\n",
2024-07-05 12:28:06 +02:00
"key = \"alpha\"\n",
"\n",
"X = [get_samples(sim, catalogue, nsim=nsim, convert_Vext_to_galactic=False)[key] for nsim in range(20)]\n",
"Xmarg = get_samples(sim, catalogue, convert_Vext_to_galactic=False)[key]\n",
"\n",
"\n",
"plt.figure()\n",
"plt.title(f\"{simname_to_pretty(sim)}, {catalogue}\")\n",
"for n in range(20):\n",
" plt.hist(X[n], bins=\"auto\", alpha=0.25, histtype='step',\n",
" color='black', linewidth=0.5, density=1, zorder=0,\n",
" label=\"Individual box\" if n == 0 else None)\n",
"\n",
"plt.hist(np.hstack([X[n] for n in range(20)]), bins=\"auto\",\n",
" histtype='step', color='blue', density=1,\n",
" label=\"Stacked individual boxes\")\n",
"plt.hist(Xmarg, bins=\"auto\", histtype='step', color='red',\n",
" density=1, label=\"Marginalised boxes\")\n",
"\n",
"plt.legend(fontsize=\"small\", frameon=False, loc='upper left', ncols=3)\n",
"plt.xlabel(names_to_latex([key], True)[0])\n",
"plt.ylabel(\"Normalized PDF\")\n",
"\n",
"plt.tight_layout()\n",
"plt.savefig(f\"../../plots/consistency_{sim}_{catalogue}_{key}.png\", dpi=450)\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### SN/TFR Calibration consistency"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# catalogues = [\"LOSS\", \"Foundation\", \"Pantheon+\", \"2MTF\", \"SFI_gals\"]\n",
"catalogues = [\"Pantheon+\"]\n",
"sims = [\"Carrick2015\", \"csiborg2_main\", \"csiborg2X\"]\n",
"\n",
"for catalogue in catalogues:\n",
" X = [samples_to_getdist(get_samples(sim, catalogue), sim)\n",
" for sim in sims]\n",
"\n",
" if \"Pantheon+\" in catalogue or catalogue in [\"Foundation\", \"LOSS\"]:\n",
" params = [\"alpha_cal\", \"beta_cal\", \"mag_cal\", \"e_mu\"]\n",
" else:\n",
" params = [\"aTF\", \"bTF\", \"e_mu\"]\n",
"\n",
" g = plots.get_subplot_plotter()\n",
" g.settings.figure_legend_frame = False\n",
" g.settings.alpha_filled_add = 0.75\n",
"\n",
" g.triangle_plot(X, params=params, filled=True, legend_loc='upper right')\n",
" plt.gcf().suptitle(f'{catalogue}', y=1.025)\n",
" plt.gcf().tight_layout()\n",
" # plt.gcf().savefig(f\"../../plots/calibration_{catalogue}.png\", dpi=500, bbox_inches='tight')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
2024-07-03 10:50:21 +02:00
"### $V_{\\rm ext}$ comparison"
]
},
2024-07-03 10:50:21 +02:00
{
"cell_type": "code",
2024-07-05 12:28:06 +02:00
"execution_count": null,
2024-07-03 10:50:21 +02:00
"metadata": {},
2024-07-05 12:28:06 +02:00
"outputs": [],
2024-07-03 10:50:21 +02:00
"source": [
"catalogues = [\"LOSS\"]\n",
"# sims = [\"Carrick2015\", \"csiborg2_main\", \"csiborg2X\"]\n",
"sims = [\"Carrick2015\"]\n",
"params = [\"Vmag\", \"l\", \"b\"]\n",
"\n",
"for sim in sims:\n",
" X = [samples_to_getdist(get_samples(sim, catalogue), sim, catalogue)\n",
" for catalogue in catalogues]\n",
"\n",
" g = plots.get_subplot_plotter()\n",
" g.settings.figure_legend_frame = False\n",
" g.settings.alpha_filled_add = 0.75\n",
"\n",
" g.triangle_plot(X, params=params, filled=True, legend_loc='upper right')\n",
" plt.gcf().suptitle(f'{simname_to_pretty(sim)}', y=1.025)\n",
" plt.gcf().tight_layout()\n",
" # plt.gcf().savefig(f\"../../plots/calibration_{sim}.png\", dpi=500, bbox_inches='tight')\n",
" plt.gcf().show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Bulk flow in the simulation rest frame"
]
},
{
"cell_type": "code",
2024-07-05 12:28:06 +02:00
"execution_count": null,
2024-07-03 10:50:21 +02:00
"metadata": {},
2024-07-05 12:28:06 +02:00
"outputs": [],
2024-07-03 10:50:21 +02:00
"source": [
"sims = [\"Carrick2015\", \"csiborg1\", \"csiborg2_main\", \"csiborg2X\"]\n",
"convert_to_galactic = False\n",
"\n",
"fig, axs = plt.subplots(1, 3, figsize=(15, 5))\n",
"cols = plt.rcParams['axes.prop_cycle'].by_key()['color']\n",
"\n",
"for i, sim in enumerate(sims):\n",
" r, B = get_bulkflow_simulation(sim, convert_to_galactic=convert_to_galactic)\n",
" if sim == \"Carrick2015\":\n",
" if convert_to_galactic:\n",
" B[..., 0] *= 0.43\n",
" else:\n",
" B *= 0.43\n",
"\n",
" for n in range(3):\n",
" ylow, ymed, yhigh = np.percentile(B[..., n], [16, 50, 84], axis=0)\n",
" axs[n].fill_between(r, ylow, yhigh, color=cols[i], alpha=0.5, label=simname_to_pretty(sim) if n == 0 else None)\n",
"\n",
2024-07-03 10:50:21 +02:00
"axs[0].legend()\n",
"if convert_to_galactic:\n",
" axs[0].set_ylabel(r\"$B ~ [\\mathrm{km} / \\mathrm{s}]$\")\n",
" axs[1].set_ylabel(r\"$\\ell_B ~ [\\degree]$\")\n",
" axs[2].set_ylabel(r\"$b_B ~ [\\degree]$\")\n",
"else:\n",
" axs[0].set_ylabel(r\"$B_{x} ~ [\\mathrm{km} / \\mathrm{s}]$\")\n",
" axs[1].set_ylabel(r\"$B_{y} ~ [\\mathrm{km} / \\mathrm{s}]$\")\n",
" axs[2].set_ylabel(r\"$B_{z} ~ [\\mathrm{km} / \\mathrm{s}]$\")\n",
"\n",
"for n in range(3):\n",
" axs[n].set_xlabel(r\"$R ~ [\\mathrm{Mpc}]$\")\n",
"\n",
"\n",
"fig.tight_layout()\n",
2024-07-05 12:28:06 +02:00
"fig.savefig(\"../../plots/bulkflow_simulations_restframe.png\", dpi=450)\n",
2024-07-03 10:50:21 +02:00
"fig.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Bulk flow in the CMB rest frame"
]
},
{
"cell_type": "code",
2024-07-05 12:28:06 +02:00
"execution_count": null,
"metadata": {},
2024-07-05 12:28:06 +02:00
"outputs": [],
"source": [
2024-07-05 12:28:06 +02:00
"sim = \"csiborg2_main\"\n",
"catalogues = [\"Pantheon+\", \"2MTF\", \"SFI_gals\"]\n",
2024-07-03 10:50:21 +02:00
"\n",
"\n",
"fig, axs = plt.subplots(1, 3, figsize=(15, 5), sharex=True)\n",
"cols = plt.rcParams['axes.prop_cycle'].by_key()['color']\n",
2024-07-03 10:50:21 +02:00
"# fig.suptitle(f\"Calibrated against {catalogue}\")\n",
"\n",
2024-07-03 10:50:21 +02:00
"for i, catalogue in enumerate(catalogues):\n",
2024-07-05 12:28:06 +02:00
" r, B = get_bulkflow(sim, catalogue, sample_beta=True, convert_to_galactic=True,\n",
" weight_simulations=True, downsample=3)\n",
2024-07-03 10:50:21 +02:00
" c = cols[i]\n",
" for n in range(3):\n",
" ylow, ymed, yhigh = np.percentile(B[..., n], [16, 50, 84], axis=-1)\n",
" axs[n].plot(r, ymed, color=c)\n",
" axs[n].fill_between(r, ylow, yhigh, alpha=0.5, color=c, label=catalogue)\n",
"\n",
"\n",
"# CMB-LG velocity\n",
2024-07-03 10:50:21 +02:00
"axs[0].fill_between([r.min(), 10.], [627 - 22, 627 - 22], [627 + 22, 627 + 22], color='black', alpha=0.5, zorder=0.5, label=\"CMB-LG\", hatch=\"x\")\n",
"axs[1].fill_between([r.min(), 10.], [276 - 3, 276 - 3], [276 + 3, 276 + 3], color='black', alpha=0.5, zorder=0.5, hatch=\"x\")\n",
"axs[2].fill_between([r.min(), 10.], [30 - 3, 30 - 3], [30 + 3, 30 + 3], color='black', alpha=0.5, zorder=0.5, hatch=\"x\")\n",
"\n",
"# LCDM expectation\n",
"Rs,mean,std,mode,p05,p16,p84,p95 = np.load(\"/mnt/users/rstiskalek/csiborgtools/data/BulkFlowPlot.npy\")\n",
"m = Rs < 175\n",
"axs[0].plot(Rs[m], mode[m], color=\"violet\", zorder=0)\n",
"axs[0].fill_between(Rs[m], p16[m], p84[m], alpha=0.25, color=\"violet\",\n",
" zorder=0, hatch='//', label=r\"$\\Lambda\\mathrm{CDM}$\")\n",
"\n",
"for n in range(3):\n",
" axs[n].set_xlabel(r\"$r ~ [\\mathrm{Mpc} / h]$\")\n",
"\n",
"axs[0].legend()\n",
"axs[0].set_ylabel(r\"$B ~ [\\mathrm{km} / \\mathrm{s}]$\")\n",
"axs[1].set_ylabel(r\"$\\ell_B ~ [\\mathrm{deg}]$\")\n",
"axs[2].set_ylabel(r\"$b_B ~ [\\mathrm{deg}]$\")\n",
"\n",
"axs[0].set_xlim(r.min(), r.max())\n",
"\n",
"fig.tight_layout()\n",
"fig.savefig(f\"../../plots/bulkflow_{sim}_{catalogue}.png\", dpi=450)\n",
"fig.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Smoothing scale dependence"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"simname = \"Carrick2015\"\n",
"catalogue = \"Pantheon+\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Goodness-of-fit"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"scales = [0, 4, 8, 16, 32]\n",
"\n",
"y = np.asarray([get_gof(\"BIC\", simname, catalogue, ksmooth=i)\n",
" for i in range(len(scales))])\n",
"ymin = y.min()\n",
"\n",
"y -= ymin\n",
"y_CF4 = get_gof(\"BIC\", \"CF4\", catalogue) - ymin\n",
"y_CF4gp = get_gof(\"BIC\", \"CF4gp\", catalogue) - ymin\n",
"\n",
"plt.figure()\n",
"plt.axhline(y[0], color='blue', label=\"Carrick+2015, no smoothing\")\n",
"plt.plot(scales[1:], y[1:], marker=\"o\", label=\"Carrick+2015, smoothed\")\n",
"\n",
"plt.axhline(y_CF4, color='red', label=\"CF4, no smoothing\")\n",
"\n",
"plt.xlabel(r\"$R_{\\rm smooth} ~ [\\mathrm{Mpc}]$\")\n",
"plt.ylabel(r\"$\\Delta \\mathrm{BIC}$\")\n",
"plt.legend(ncols=1)\n",
"\n",
"plt.tight_layout()\n",
"plt.savefig(\"../../plots/test_smooth.png\", dpi=450)\n",
"plt.show()\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"sim = \"Carrick2015\"\n",
"catalogue = \"Pantheon+\"\n",
"\n",
"\n",
"X = [samples_to_getdist(get_samples(sim, catalogue, ksmooth=ksmooth), ksmooth)\n",
" for ksmooth in [0, 1, 2]]\n",
"\n",
"params = [\"Vmag\", \"l\", \"b\", \"sigma_v\", \"beta\"]\n",
"# if \"Pantheon+\" in catalogue or catalogue in [\"Foundation\", \"LOSS\"]:\n",
"# params += [\"alpha_cal\", \"beta_cal\", \"mag_cal\", \"e_mu\"]\n",
"# else:\n",
"# params += [\"aTF\", \"bTF\", \"e_mu\"]\n",
"\n",
"\n",
"\n",
"g = plots.get_subplot_plotter()\n",
"g.settings.figure_legend_frame = False\n",
"g.settings.alpha_filled_add = 0.75\n",
"\n",
"g.triangle_plot(X, params=params, filled=True, legend_loc='upper right')\n",
"plt.gcf().suptitle(f'{catalogue}', y=1.025)\n",
"plt.gcf().tight_layout()\n",
"plt.gcf().savefig(f\"../../plots/calibration_{catalogue}.png\", dpi=500, bbox_inches='tight')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
2024-09-17 11:26:04 +02:00
"## Void testing"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Evidence comparison"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"zcmb_max = 0.05\n",
"\n",
"sims = [\"no_field\", \"IndranilVoid_exp\"]\n",
"cats = [\"LOSS\", \"Foundation\", \"2MTF\", \"SFI_gals\", \"CF4_TFR_i\", \"CF4_TFR_w1\"]\n",
"\n",
"neglnZ = {}\n",
2024-09-17 11:26:04 +02:00
"kfound = []\n",
"for sim in sims:\n",
" for cat in cats:\n",
" sample_alpha = sim not in [\"IndranilVoid_exp\", \"no_field\"]\n",
" fname = paths.flow_validation(\n",
" fdir, sim, cat, inference_method=\"mike\",\n",
" sample_alpha=sample_alpha, zcmb_max=zcmb_max)\n",
2024-09-17 11:26:04 +02:00
" \n",
"\n",
" neglnZ[f\"{sim}_{cat}\"] = get_gof(\"neg_lnZ_harmonic\", fname)\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"simA = sims[0]\n",
"simB = sims[1]\n",
"\n",
"print(f\"lnZ_({simA}) - lnZ_({simB})\\n\")\n",
"for cat in cats:\n",
" lnZ_A = - neglnZ[f\"{simA}_{cat}\"]\n",
" lnZ_B = - neglnZ[f\"{simB}_{cat}\"]\n",
" print(f\"{cat:15s} {lnZ_A - lnZ_B:.1f}\")\n",
"\n",
"\n",
"print(f\"\\n(Positive -> preference for {simA})\")"
]
},
2024-09-17 11:26:04 +02:00
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 1. Goodness-of-fit comparison"
]
},
{
"cell_type": "code",
2024-09-17 11:26:04 +02:00
"execution_count": 49,
"metadata": {},
"outputs": [],
"source": [
2024-09-17 11:26:04 +02:00
"zcmb_max = 0.05\n",
"no_Vext = True\n",
"\n",
"sims = [\"IndranilVoid_exp\", \"IndranilVoid_gauss\", \"IndranilVoid_mb\"]\n",
"cats = [\"2MTF\", \"SFI_gals\", \"CF4_TFR_i\", \"CF4_TFR_w1\"]\n",
"\n",
"neglnZ = {}\n",
"kfound = {}\n",
"for sim in sims:\n",
" for cat in cats:\n",
" kfound[f\"{sim}_{cat}\"] = []\n",
" for ksim in range(500):\n",
" sample_alpha = False\n",
" fname = paths.flow_validation(\n",
" fdir, sim, cat, inference_method=\"mike\", nsim=ksim,\n",
" sample_alpha=sample_alpha, zcmb_max=zcmb_max,\n",
" no_Vext=no_Vext, verbose_print=False)\n",
"\n",
" if not exists(fname):\n",
" continue\n",
"\n",
" kfound[f\"{sim}_{cat}\"].append(ksim)\n",
" neglnZ[f\"{sim}_{cat}_{ksim}\"] = get_gof(\"neg_lnZ_harmonic\", fname)\n",
"\n",
"\n",
"neglnZ_no_field = {}\n",
"neglnZ_dipole = {}\n",
"sim = \"no_field\"\n",
"for cat in cats:\n",
" sample_alpha = False\n",
" fname = paths.flow_validation(\n",
" fdir, sim, cat, inference_method=\"mike\",\n",
" sample_alpha=sample_alpha, zcmb_max=zcmb_max,\n",
" no_Vext=True, verbose_print=False)\n",
"\n",
" if not exists(fname):\n",
" continue\n",
"\n",
2024-09-17 11:26:04 +02:00
" neglnZ_no_field[f\"{cat}\"] = get_gof(\"neg_lnZ_harmonic\", fname)\n",
"\n",
" fname = paths.flow_validation(\n",
" fdir, sim, cat, inference_method=\"mike\",\n",
" sample_alpha=sample_alpha, zcmb_max=zcmb_max,\n",
" no_Vext=None, verbose_print=False)\n",
"\n",
" if not exists(fname):\n",
" continue\n",
"\n",
" neglnZ_dipole[f\"{cat}\"] = get_gof(\"neg_lnZ_harmonic\", fname)\n"
]
},
{
"cell_type": "code",
2024-09-17 11:26:48 +02:00
"execution_count": null,
"metadata": {},
"outputs": [],
2024-09-17 11:26:04 +02:00
"source": [
"with plt.style.context('science'):\n",
" plt.rcParams.update({'font.size': 9})\n",
"\n",
" figwidth = 8.3 \n",
" fig, axs = plt.subplots(2, 2, figsize=(figwidth, 0.65 * figwidth))\n",
"\n",
" for n, cat in enumerate(cats):\n",
" i, j = n // 2, n % 2\n",
" ax = axs[i, j]\n",
"\n",
" for sim in sims:\n",
" x = kfound[f\"{sim}_{cat}\"]\n",
" y = [neglnZ[f\"{sim}_{cat}_{ksim}\"] / np.log(10) for ksim in x]\n",
" x = np.array(x) * 0.674\n",
" ax.plot(x, y, label=simname_to_pretty(sim))\n",
" \n",
" # if no_Vext is None:\n",
" # y_no_field = neglnZ_no_field[cat] / np.log(10)\n",
" # if cat != \"CF4_TFR_w1\":\n",
" # ax.axhline(y_no_field, color=\"black\", ls=\"--\", label=\"No peculiar velocity\")\n",
" y_no_field = neglnZ_no_field[cat] / np.log(10)\n",
" ax.axhline(y_no_field, color=\"black\", ls=\"--\", label=\"No peculiar velocity\")\n",
"\n",
" y_dipole = neglnZ_dipole[cat] / np.log(10)\n",
" ax.axhline(y_dipole, color=\"black\", ls=\":\", label=\"Constant dipole\")\n",
"\n",
" ax.text(0.5, 0.9, catalogue_to_pretty(cat),\n",
" transform=ax.transAxes, #fontsize=\"small\",\n",
" verticalalignment='center', horizontalalignment='center',\n",
" bbox=dict(facecolor='white', alpha=0.5),\n",
" )\n",
"\n",
" if n == 0:\n",
" ax.legend(fontsize=\"small\", loc=\"upper left\")\n",
"\n",
" ax.set_ylabel(r\"$-\\Delta \\log \\mathcal{Z}$\")\n",
" ax.set_xlabel(r\"$R_{\\rm offset} ~ [\\mathrm{Mpc} / h]$\")\n",
" ax.set_xlim(0)\n",
"\n",
" fig.tight_layout()\n",
" fname = f\"../../plots/void_goodness_of_fit_observer.png\"\n",
" if no_Vext:\n",
" fname = fname.replace(\".png\", \"_no_Vext.png\")\n",
" print(f\"Saving to `{fname}`.\")\n",
" fig.savefig(fname, dpi=450)\n",
" fig.show()\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
2024-09-17 11:53:42 +02:00
"### 2. Single parameter radial dependence"
2024-09-17 11:26:04 +02:00
]
},
{
"cell_type": "code",
2024-09-17 11:53:42 +02:00
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
2024-09-17 11:26:04 +02:00
"zcmb_max = 0.05\n",
2024-09-17 11:53:42 +02:00
"key = \"sigma_v\"\n",
"key_label = r\"$\\sigma_v ~ [\\mathrm{km} / \\mathrm{s}]$\"\n",
"# key_label = r\"$|\\mathbf{V}_{\\rm ext}| ~ [\\mathrm{km} / \\mathrm{s}]$\"\n",
"no_Vext = True\n",
"\n",
2024-09-17 11:26:04 +02:00
"sims = [\"IndranilVoid_exp\", \"IndranilVoid_gauss\", \"IndranilVoid_mb\"]\n",
"cats = [\"2MTF\", \"SFI_gals\", \"CF4_TFR_i\", \"CF4_TFR_w1\"]\n",
"\n",
2024-09-17 11:26:04 +02:00
"data_mean = {}\n",
"data_std = {}\n",
"kfound = {}\n",
"for sim in sims:\n",
" for cat in cats:\n",
" kfound[f\"{sim}_{cat}\"] = []\n",
" for ksim in range(500):\n",
" sample_alpha = False\n",
" fname = paths.flow_validation(\n",
" fdir, sim, cat, inference_method=\"mike\", nsim=ksim,\n",
" sample_alpha=sample_alpha, zcmb_max=zcmb_max,\n",
" no_Vext=no_Vext, verbose_print=False)\n",
"\n",
" if not exists(fname):\n",
" continue\n",
"\n",
" kfound[f\"{sim}_{cat}\"].append(ksim)\n",
" with File(fname, 'r') as f:\n",
" x = f[f\"samples/{key}\"][...]\n",
" if key == \"Vext\":\n",
" x = np.linalg.norm(x, axis=-1)\n",
"\n",
" data_mean[f\"{sim}_{cat}_{ksim}\"] = x.mean()\n",
" data_std[f\"{sim}_{cat}_{ksim}\"] = x.std()"
]
},
{
"cell_type": "code",
2024-09-17 11:53:42 +02:00
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Saving to `../../plots/void_sigma_v_per_observer_no_Vext.png`.\n"
]
},
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAA0AAAAIUCAYAAAAzC0wXAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/H5lhTAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd1wU1xbA8d/SBaUjIjZAFLsuYO+CXWMBsURjhfRmIjG9G0gxPRFjTIwRFSxRYwN7l2LvslZEqWuhSNv3xwSeKCgsC7uw9/v58HmP2Zm7Z43O7Jm59xyZSqVSIQiCIAiCIAiCoAcMtB2AIAiCIAiCIAhCdREJkCAIgiAIgiAIekMkQIIgCIIgCIIg6A2RAAmCIAiCIAiCoDdEAiQIgiAIgiAIgt4QCZAgCIIgCIIgCHpDJECCIAiCIAiCIOgNkQAJgiAIgiAIgqA3RAIkCIIgCIIgCILeMNJ2ANWlUaNGyOXyJ+6XmJiIs7Oz2E+N/XQ5ttqyny7Hpuv76XJstWW/xMREcnJyOHXq1BPHq200eY3R5f/GtWU/XY6ttuyny7Hp+n66HJs294uPj+f69etP3K9cVHrC0dGxXPuNGDFC7KfmfrocW23ZT5dj0/X9dDm22rLfiBEjyj1ebWNlZaUaMWKEatmyZY/dT/xd1Y39dDm22rKfLsem6/vpcmza2G/ZsmWqESNGqKysrMo1XnnozROg8powYYJO71de2oivNnyGiuxXXtr4M9blz1AV+2njPcV/C+FBZmZmrFu37on7aePfufg7WPXvKf5bqK82fAZNv29t+Aya3G/ChAlMmDCBBg0alGu8ctFYKqXjynt3TtfVhrurteEzqFS143PUhs+gUtWOz1HTP8OyZctUjo6OKrlcru1QtKK8swx0WU3/O1ikNnwO8Rl0R234HLXhM6hUmj3P6s0TIDc3t3LdndN1teEubG34DFA7Pkdt+AxQOz5HTf8MRfGHh4drORLtKM/8dV1X0/8OFqkNn0N8Bt1RGz5HbfgMoNnzrEylUqk0NpoOGzlyZK1IgARBEHSZvp5r9fVzC4IgVBdNnmdFGWxBEARBEARBEPSG1qbAKZVKrK2tS30tKCiIBQsWABAdHY1CocDW1haFQsGcOXMeu10QBEEQBEEQBKEs1f4EKDIykuDgYAYMGFDq66GhoSgUiuLfQ0JCCAwMxM/Pr/j4x20vy+XkexQUFmriIwiCIAhCCTl5BdoOQRAEQSinan8C5Ofnh1wuJzo6+pHXFApFiadC0dHRJX6Xy+UsWLAAa2vrUrcXJUOlOZ14m1UHrzKuezMNfApB+L/bt2+TlZWl7TAqxNzcHCsrK22HoTEymQwfH58S26KiorQUTeUoFAqCgoJqbPz66mzibW2HIOghbVx/atv1Q9BPOlUFLjo6Gh8fHyIiIgCp46utrW3x67a2tsTHx5e5/XHqW5nx+ZrjjOnSBCNDsfRJ0Izbt2/z448/kpeXp+1QKsTY2JgXX3yxVl3EdDlhUCgUuLq6AtJ5bdasWcTFxWk5KkGTbmRk02v0DJ4f51NrKi4Juk1b15/aeP0QdFt4eDjh4eEkJiZqbEydSYCio6MZN24c6enpxdvS0tJK3bes7Y/TwsmSuFv3+HvvJZ7p46Z2nILwoKysLPLy8hgzZgwODg7aDqdcUlJSWL16NVlZWeICVk38/f2LEx65XC6Sn1rI2tyY3FZj8B83RNuhCHpCG9cfcf0QtKGoEerIkSM1NqbOJEBFRREeTIDs7OxQKpWP7FvW9se5m55MfburzF6YScTXs5k0IUDcpRM0xsHBAScnJ22HoTVZ9/M5n3SnSsZu4WSJuemTT1X+/v7F/9/X15fAwECCg4Nxc3MjMDCQ0NBQrK2tGTduHAMGDMDLy4vo6GiCgoKYM2cOQUFBKBQK0tPTWbhwIXK5HIVCgb+/f/G+ISEhxVNti/a3trYmIiKizH2Dg4OLXwsKCsLV1bV4iptSqWTWrFnF57+ip981SdGduSKavENXk7RpbMORxNuERZ/n+UEe2g5H0CP6fv0RBHXoRAJU9MUkMjIShUKBQqEgMjISuVxOTExM8X7p6enI5fIytz+Os7Mzf3/9HF3e3sjIl0OZ4NOiyj6PIOib80l36PX+5ioZe8/Hg+nYzPaJ+5WWPISEhODv749SqSQhIYEFCxYU3zwpqjRpY2NTvK6wKCnx9PQkISEBkKavxcXFFa/N8fPzIywsrHj/6Ojo4vNVafuGhIQQHR1dHN+DRV4eTHr8/f2Jjo4unipXUxTdmSuiyTt0NYmVuTHT+zXns9Un8OvalPpWdbQdkiAIglAGnUiAHixhHR8fT1RUVPFd1uDg4BKvBQQE4OPjU+r2J/FwtiKgezNC/znJ071cy3VXWRCEJ2vhZMmejwdX2diVsXDhQmxsbMjIyCj1dS8vL1asWMHcuXMBigusFCVKRQmJra1t8RPqB5Mc+P/Tp9L2fZL4+HhiY2NRKBQVfrIt6Jb3/Tqw5vA13ltxlAWB3bQdjiAIglCGas8AoqOjiYqKQqFQEBYWho+PT/GXBoVCwYIFC4qfABXdPQ0NDS3epygxKmv7k8wd3Y6Ig5dZuO0CrwxtVQWfUBD0j7mpUbme0mhDUcGBWbNmFT9teTDRiI2N5eWXXyYiIgIfH5/iaXBFU3IfLLhSxNPTE2tra0JCQoq3FfUlK01ZiU1YWBhxcXGEhIQUP3ESKu/hPnORkZGkp6eTkJCAUqmssj5ztnVN+dC/Ay8vPsz0fs3p4l4z1gUKgiDom2ovh+bj40NISAgZGRkEBgaWmO7h6urKggULSEhIKE5ofHx8mDNnDn5+fiUuQmVtfxKX+nWZ3NuN+f+e5m52zarcJdQ8YWFhuLm54ebmVuKppa+vLzY2NqUe4+npiZubVKgjNDS0+Hg3NzdsbGxK/F5U/dDT0/OR1x5cE6MPPD09S/wolUqCgoIICgpCLpcX/3+Qps0GBQXh6elJSEgIH330UfEY/v7+bNu27bHvFRgYiFKpxNfXl6CgoFLL+j/Ix8cHT09PwsLCSmz38vIiNjaW4ODgJ1ayFJ6stD5zRdOqAwMDCQkJIT09ndDQUEBzfeYeNKWPK3IXW2YviRW95wStio+PL3FtePAa9LhrhpubW4X+zgtCTaSXc8DmjGzD33sU/Bp1njdHttF2OEItpVAoiIqKKr7rXJTYBAYGAtI0qaInnQ8e8+DTgjlz5hQn+EUXs9KmcimVShYuXFjuJ6G1jUqlKnV70Z1+kJIQHx8flEpl8c2WsvYt4urqWlxe29raukT1ttL2L+++RfuVVRFOl0t667LS+swplUpWrFhR/O/I29ubqKgo5HK5xvrMPcjQwICvpnjR/6Ot/LEzgRn93TXy2QShIpRKJQMGDCh+sq1UKlm5cmWJ1/X5miEIetkQp5GdBdP7NeeHTWe4nZWr7XCEWkqpVJZYV/Jwc0s/P79Sv4QXPaUQBKHyHk4yExISkMvlGu0z9zBvN3um9HHjo4hjpN7NqfyHEIQKio2NBShuEG1tbV18800QBD1NgABmj2hDdm4BP20+q+1QhFqqqGLhgx78YuXr6/vIE5+HnwgJmvfw0xlBfyiVSqKjo5k7d65G+8yBVP575MiRxT8dDBNQqVR8HHm8MiELglqKEp+i6pKCUBOFh4eXOK9qss2C3iZADazrMMvHnR83nyXt7n1thyPUckULrx+cgw3SU6CiaQnR0dHFFy11BAcHl1gD82C5ZUEQpIIYUVFRWFtbY2dnV+o+ZW1/EmdnZ9atW1f8Ezh1Iu/5deCPnReJV6iXVAlCZVy6dAmQkiAbG5tH1vWIa4ag6yZMmFDivOrs7KyxsfUmASq6O/dgw77XhrWmUAXfbzqjxcgEfeDv709ERMQjPV6CgoKKp8FVdvpbSEgIcXFxxT81rZ+MULMV3anT1UaooaGhhISE4OrqikKhQC6XlyhV/mCfudK2q2N6v+a0bWzN7L9iKSwsfZ2aIFSVoj5jGRkZLFy4EH9//xJJjrhmCPpMbxKgortzDzbsc7A0I9CnBQujz3NHVIQTqoi/vz8hISGlfokquuA
"text/plain": [
"<Figure size 830x539.5 with 4 Axes>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
2024-09-17 11:26:04 +02:00
"source": [
"with plt.style.context('science'):\n",
" plt.rcParams.update({'font.size': 9})\n",
"\n",
" figwidth = 8.3\n",
" fig, axs = plt.subplots(2, 2, figsize=(figwidth, 0.65 * figwidth))\n",
"\n",
" for n, cat in enumerate(cats):\n",
" i, j = n // 2, n % 2\n",
" ax = axs[i, j]\n",
"\n",
" for sim in sims:\n",
" x = kfound[f\"{sim}_{cat}\"]\n",
" y = [data_mean[f\"{sim}_{cat}_{ksim}\"] for ksim in x]\n",
" yerr = [data_std[f\"{sim}_{cat}_{ksim}\"] for ksim in x]\n",
" x = np.array(x) * 0.674\n",
"\n",
" ax.plot(x, y, label=simname_to_pretty(sim))\n",
" # ax.fill_between(x, np.array(y) - np.array(yerr), np.array(y) + np.array(yerr), alpha=0.5)\n",
"\n",
" ax.text(0.5, 0.9, catalogue_to_pretty(cat),\n",
" transform=ax.transAxes, #fontsize=\"small\",\n",
" verticalalignment='center', horizontalalignment='center',\n",
" bbox=dict(facecolor='white', alpha=0.5),\n",
" )\n",
"\n",
" if n == 0:\n",
" ax.legend(fontsize=\"small\", loc='upper right')\n",
"\n",
" ax.set_ylabel(key_label)\n",
" ax.set_xlabel(r\"$R_{\\rm offset} ~ [\\mathrm{Mpc} / h]$\")\n",
" ax.set_xlim(0),\n",
"\n",
" fig.tight_layout()\n",
" fname = f\"../../plots/void_{key}_per_observer.png\"\n",
" if no_Vext:\n",
" fname = fname.replace(\".png\", \"_no_Vext.png\")\n",
" print(f\"Saving to `{fname}`.\")\n",
" fig.savefig(fname, dpi=450)\n",
" fig.show()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
2024-07-03 10:51:00 +02:00
"source": []
2024-09-17 11:26:04 +02:00
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "venv_csiborg",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
2024-07-05 12:28:06 +02:00
"version": "3.11.4"
}
},
"nbformat": 4,
"nbformat_minor": 2
}