csiborgtools/scripts_plots/plot_match.py

914 lines
31 KiB
Python
Raw Normal View History

# Copyright (C) 2023 Richard Stiskalek
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2023-05-25 16:54:24 +02:00
from argparse import ArgumentParser
from os.path import join
import matplotlib as mpl
import matplotlib.pyplot as plt
2023-05-22 14:42:10 +02:00
import numpy
2023-05-25 16:54:24 +02:00
import scienceplots # noqa
from cache_to_disk import cache_to_disk, delete_disk_caches_for_function
from tqdm import tqdm
import plt_utils
try:
import csiborgtools
except ModuleNotFoundError:
import sys
sys.path.append("../")
import csiborgtools
2023-05-25 16:54:24 +02:00
###############################################################################
# IC overlap plotting #
###############################################################################
def open_cat(nsim):
"""
Open a CSiBORG halo catalogue. Applies only mass selection.
Parameters
----------
nsim : int
Simulation index.
Returns
-------
cat : csiborgtools.read.HaloCatalogue
2023-05-25 16:54:24 +02:00
"""
paths = csiborgtools.read.Paths(**csiborgtools.paths_glamdring)
bounds = {"totpartmass": (1e12, None)}
return csiborgtools.read.HaloCatalogue(nsim, paths, bounds=bounds)
@cache_to_disk(7)
def get_overlap(nsim0):
"""
Calculate the summed overlap and probability of no match for a single
reference simulation.
Parameters
----------
nsim0 : int
Simulation index.
Returns
-------
mass : 1-dimensional array
Mass of halos in the reference simulation.
hindxs : 1-dimensional array
Halo indices in the reference simulation.
summed_overlap : 1-dimensional array
Summed overlap for each halo in the reference simulation.
prob_nomatch : 1-dimensional array
Probability of no match for each halo in the reference simulation.
2023-05-25 16:54:24 +02:00
"""
paths = csiborgtools.read.Paths(**csiborgtools.paths_glamdring)
nsimxs = csiborgtools.read.get_cross_sims(nsim0, paths, smoothed=True)
cat0 = open_cat(nsim0)
catxs = []
print("Opening catalogues...", flush=True)
2023-05-25 16:54:24 +02:00
for nsimx in tqdm(nsimxs):
catxs.append(open_cat(nsimx))
reader = csiborgtools.read.NPairsOverlap(cat0, catxs, paths)
mass = reader.cat0("totpartmass")
hindxs = reader.cat0("index")
2023-05-25 16:54:24 +02:00
summed_overlap = reader.summed_overlap(True)
prob_nomatch = reader.prob_nomatch(True)
return mass, hindxs, summed_overlap, prob_nomatch
2023-05-25 16:54:24 +02:00
def plot_summed_overlap_vs_mass(nsim0):
2023-05-25 16:54:24 +02:00
"""
Plot the summer overlap of probaiblity of no matching for a single
reference simulations as a function of the reference halo mass, along with
their comparison.
Parameters
----------
nsim0 : int
Simulation index.
Returns
-------
None
2023-05-25 16:54:24 +02:00
"""
x, __, summed_overlap, prob_nomatch = get_overlap(nsim0)
2023-05-25 16:54:24 +02:00
mean_overlap = numpy.mean(summed_overlap, axis=1)
std_overlap = numpy.std(summed_overlap, axis=1)
mean_prob_nomatch = numpy.mean(prob_nomatch, axis=1)
mask = mean_overlap > 0
x = x[mask]
mean_overlap = mean_overlap[mask]
std_overlap = std_overlap[mask]
mean_prob_nomatch = mean_prob_nomatch[mask]
# Mean summed overlap
with plt.style.context(plt_utils.mplstyle):
2023-05-25 16:54:24 +02:00
plt.figure()
plt.hexbin(x, mean_overlap, mincnt=1, xscale="log", bins="log",
gridsize=50)
plt.colorbar(label="Counts in bins")
plt.xlabel(r"$M_{\rm tot} / M_\odot$")
plt.ylabel(r"$\langle \mathcal{O}_{a}^{\mathcal{A} \mathcal{B}} \rangle_{\mathcal{B}}$") # noqa
plt.ylim(0., 1.)
plt.tight_layout()
for ext in ["png", "pdf"]:
fout = join(plt_utils.fout, f"overlap_mean_{nsim0}.{ext}")
2023-05-25 16:54:24 +02:00
print(f"Saving to `{fout}`.")
plt.savefig(fout, dpi=plt_utils.dpi, bbox_inches="tight")
2023-05-25 16:54:24 +02:00
plt.close()
# Std summed overlap
with plt.style.context(plt_utils.mplstyle):
2023-05-25 16:54:24 +02:00
plt.figure()
plt.hexbin(x, std_overlap, mincnt=1, xscale="log", bins="log",
gridsize=50)
plt.colorbar(label="Counts in bins")
plt.xlabel(r"$M_{\rm tot} / M_\odot$")
plt.ylabel(r"$\delta \left( \mathcal{O}_{a}^{\mathcal{A} \mathcal{B}} \right)_{\mathcal{B}}$") # noqa
plt.ylim(0., 1.)
plt.tight_layout()
for ext in ["png", "pdf"]:
fout = join(plt_utils.fout, f"overlap_std_{nsim0}.{ext}")
2023-05-25 16:54:24 +02:00
print(f"Saving to `{fout}`.")
plt.savefig(fout, dpi=plt_utils.dpi, bbox_inches="tight")
2023-05-25 16:54:24 +02:00
plt.close()
# 1 - mean summed overlap vs mean prob nomatch
with plt.style.context(plt_utils.mplstyle):
2023-05-25 16:54:24 +02:00
plt.figure()
plt.scatter(1 - mean_overlap, mean_prob_nomatch, c=numpy.log10(x), s=2,
rasterized=True)
plt.colorbar(label=r"$\log_{10} M_{\rm halo} / M_\odot$")
t = numpy.linspace(0.3, 1, 100)
plt.plot(t, t, color="red", linestyle="--")
plt.xlabel(r"$1 - \langle \mathcal{O}_a^{\mathcal{A} \mathcal{B}} \rangle_{\mathcal{B}}$") # noqa
plt.ylabel(r"$\langle \eta_a^{\mathcal{A} \mathcal{B}} \rangle_{\mathcal{B}}$") # noqa
plt.tight_layout()
for ext in ["png", "pdf"]:
fout = join(plt_utils.fout,
f"overlap_vs_prob_nomatch_{nsim0}.{ext}")
2023-05-25 16:54:24 +02:00
print(f"Saving to `{fout}`.")
plt.savefig(fout, dpi=plt_utils.dpi, bbox_inches="tight")
2023-05-25 16:54:24 +02:00
plt.close()
###############################################################################
# Nearest neighbour plotting #
###############################################################################
2023-05-24 12:25:22 +02:00
def read_dist(simname, run, kind, kwargs):
"""
Read PDF/CDF of a nearest neighbour distribution.
Parameters
----------
simname : str
Simulation name. Must be either `csiborg` or `quijote`.
run : str
Run name.
kind : str
Kind of distribution. Must be either `pdf` or `cdf`.
kwargs : dict
Nearest neighbour reader keyword arguments.
Returns
-------
dist : 2-dimensional array
Distribution of distances in radial and neighbour bins.
"""
paths = csiborgtools.read.Paths(**kwargs["paths_kind"])
reader = csiborgtools.read.NearestNeighbourReader(**kwargs, paths=paths)
fpath = paths.cross_nearest(simname, run, "tot_counts", nsim=0, nobs=0)
counts = numpy.load(fpath)["tot_counts"]
return reader.build_dist(counts, kind)
def pull_cdf(x, fid_cdf, test_cdf):
"""
Pull a CDF so that it matches the fiducial CDF at 0.5. Rescales the x-axis,
while keeping the corresponding CDF values fixed.
Parameters
----------
x : 1-dimensional array
The x-axis of the CDF.
fid_cdf : 1-dimensional array
The fiducial CDF.
test_cdf : 1-dimensional array
The test CDF to be pulled.
Returns
-------
xnew : 1-dimensional array
The new x-axis of the test CDF.
test_cdf : 1-dimensional array
The new test CDF.
"""
xnew = x * numpy.interp(0.5, fid_cdf, x) / numpy.interp(0.5, test_cdf, x)
return xnew, test_cdf
def plot_dist(run, kind, kwargs, runs_to_mass, pulled_cdf=False, r200=None):
r"""
Plot the PDF or CDF of the nearest neighbour distance for CSiBORG and
Quijote.
Parameters
----------
run : str
Run name.
kind : str
Kind of distribution. Must be either `pdf` or `cdf`.
kwargs : dict
Nearest neighbour reader keyword arguments.
runs_to_mass : dict
Dictionary mapping run names to halo mass range.
pulled_cdf : bool, optional
Whether to pull the CDFs of CSiBORG and Quijote so that they match
(individually) at 0.5. Default is `False`.
r200 : float, optional
Halo radial size :math:`R_{200}`. If set, the x-axis will be scaled by
it.
Returns
-------
None
"""
assert kind in ["pdf", "cdf"]
print(f"Plotting the {kind} for {run}...", flush=True)
reader = csiborgtools.read.NearestNeighbourReader(
**kwargs, paths=csiborgtools.read.Paths(**kwargs["paths_kind"]))
raddist = reader.bin_centres("radial")
r = reader.bin_centres("neighbour")
r = r / r200 if r200 is not None else r
y_csiborg = read_dist("csiborg", run, kind, kwargs)
y_quijote = read_dist("quijote", run, kind, kwargs)
with plt.style.context(plt_utils.mplstyle):
norm = mpl.colors.Normalize(vmin=numpy.min(raddist),
vmax=numpy.max(raddist))
cmap = mpl.cm.ScalarMappable(norm=norm, cmap=mpl.cm.viridis)
cmap.set_array([])
fig, ax = plt.subplots()
if run != "mass009":
ax.set_title(r"${} \leq \log M_{{\rm tot}} / M_\odot < {}$"
.format(*runs_to_mass[run]), fontsize="small")
else:
ax.set_title(r"$\log M_{{\rm tot}} / M_\odot \geq {}$"
.format(runs_to_mass[run][0]), fontsize="small")
# Plot data
nrad = y_csiborg.shape[0]
for i in range(nrad):
if pulled_cdf:
x1, y1 = pull_cdf(r, y_csiborg[0], y_csiborg[i])
x2, y2 = pull_cdf(r, y_quijote[0], y_quijote[i])
else:
x1, y1 = r, y_csiborg[i]
x2, y2 = r, y_quijote[i]
ax.plot(x1, y1, c=cmap.to_rgba(raddist[i]),
label="CSiBORG" if i == 0 else None)
ax.plot(x2, y2, c="gray", ls="--",
label="Quijote" if i == 0 else None)
fig.colorbar(cmap, ax=ax, label=r"$R_{\rm dist}~[\mathrm{Mpc}]$")
ax.grid(alpha=0.5, lw=0.4)
# Plot labels
if pulled_cdf:
if r200 is None:
ax.set_xlabel(r"$\tilde{r}_{1\mathrm{NN}}~[\mathrm{Mpc}]$")
if kind == "pdf":
ax.set_ylabel(r"$p(\tilde{r}_{1\mathrm{NN}})$")
else:
ax.set_ylabel(r"$\mathrm{CDF}(\tilde{r}_{1\mathrm{NN}})$")
else:
ax.set_xlabel(r"$\tilde{r}_{1\mathrm{NN}} / R_{200c}$")
if kind == "pdf":
ax.set_ylabel(r"$p(\tilde{r}_{1\mathrm{NN}} / R_{200c})$")
else:
ax.set_ylabel(r"$\mathrm{CDF}(\tilde{r}_{1\mathrm{NN}} / R_{200c})$") # noqa
else:
if r200 is None:
ax.set_xlabel(r"$r_{1\mathrm{NN}}~[\mathrm{Mpc}]$")
if kind == "pdf":
ax.set_ylabel(r"$p(r_{1\mathrm{NN}})$")
else:
ax.set_ylabel(r"$\mathrm{CDF}(r_{1\mathrm{NN}})$")
else:
ax.set_xlabel(r"$r_{1\mathrm{NN}} / R_{200c}$")
if kind == "pdf":
ax.set_ylabel(r"$p(r_{1\mathrm{NN}} / R_{200c})$")
else:
ax.set_ylabel(r"$\mathrm{CDF}(r_{1\mathrm{NN}} / R_{200c})$") # noqa
if kind == "cdf":
xmax = numpy.min(r[numpy.isclose(y_quijote[-1, :], 1.)])
if xmax > 0:
ax.set_xlim(0, xmax)
ax.set_ylim(0, 1)
ax.legend(fontsize="small")
fig.tight_layout()
for ext in ["png"]:
if pulled_cdf:
fout = join(plt_utils.fout, f"1nn_{kind}_{run}_pulled.{ext}")
else:
fout = join(plt_utils.fout, f"1nn_{kind}_{run}.{ext}")
print(f"Saving to `{fout}`.")
fig.savefig(fout, dpi=plt_utils.dpi, bbox_inches="tight")
plt.close()
def get_cdf_diff(x, y_csiborg, y_quijote, pulled_cdf):
"""
Get difference between the two CDFs as a function of radial distance.
Parameters
----------
x : 1-dimensional array
The x-axis of the CDFs.
y_csiborg : 2-dimensional array
The CDFs of CSiBORG.
y_quijote : 2-dimensional array
The CDFs of Quijote.
pulled_cdf : bool
Whether to pull the CDFs of CSiBORG and Quijote.
Returns
-------
dy : 2-dimensional array
The difference between the two CDFs.
"""
dy = numpy.full_like(y_csiborg, numpy.nan)
for i in range(y_csiborg.shape[0]):
if pulled_cdf:
x1, y1 = pull_cdf(x, y_csiborg[0], y_csiborg[i])
y1 = numpy.interp(x, x1, y1, left=0., right=1.)
x2, y2 = pull_cdf(x, y_quijote[0], y_quijote[i])
y2 = numpy.interp(x, x2, y2, left=0., right=1.)
dy[i] = y1 - y2
else:
dy[i] = y_csiborg[i] - y_quijote[i]
return dy
def plot_cdf_diff(runs, kwargs, pulled_cdf, runs_to_mass):
"""
Plot the CDF difference between Quijote and CSiBORG.
Parameters
----------
runs : list of str
Run names.
kwargs : dict
Nearest neighbour reader keyword arguments.
pulled_cdf : bool
Whether to pull the CDFs of CSiBORG and Quijote.
runs_to_mass : dict
Dictionary mapping run names to halo mass range.
Returns
-------
None
"""
print("Plotting the CDF difference...", flush=True)
paths = csiborgtools.read.Paths(**kwargs["paths_kind"])
reader = csiborgtools.read.NearestNeighbourReader(**kwargs, paths=paths)
r = reader.bin_centres("neighbour")
runs_to_mass = [numpy.mean(runs_to_mass[run]) for run in runs]
with plt.style.context(plt_utils.mplstyle):
norm = mpl.colors.Normalize(vmin=min(runs_to_mass),
vmax=max(runs_to_mass))
cmap = mpl.cm.ScalarMappable(norm=norm, cmap=mpl.cm.viridis)
cmap.set_array([])
fig, ax = plt.subplots()
for i, run in enumerate(runs):
y_quijote = read_dist("quijote", run, "cdf", kwargs)
y_csiborg = read_dist("csiborg", run, "cdf", kwargs)
dy = get_cdf_diff(r, y_csiborg, y_quijote, pulled_cdf)
ax.plot(r, numpy.median(dy, axis=0),
c=cmap.to_rgba(runs_to_mass[i]))
ax.fill_between(r, *numpy.percentile(dy, [16, 84], axis=0),
alpha=0.5, color=cmap.to_rgba(runs_to_mass[i]))
fig.colorbar(cmap, ax=ax, ticks=runs_to_mass,
label=r"$\log M_{\rm tot} / M_\odot$")
ax.set_xlim(0.0, 55)
ax.set_ylim(0)
ax.grid(alpha=1/3, lw=0.4)
# Plot labels
if pulled_cdf:
ax.set_xlabel(r"$\tilde{r}_{1\mathrm{NN}}~[\mathrm{Mpc}]$")
else:
ax.set_xlabel(r"$r_{1\mathrm{NN}}~[\mathrm{Mpc}]$")
ax.set_ylabel(r"$\Delta \mathrm{CDF}(r_{1\mathrm{NN}})$")
# Plot labels
if pulled_cdf:
ax.set_xlabel(r"$\tilde{r}_{1\mathrm{NN}}~[\mathrm{Mpc}]$")
ax.set_ylabel(r"$\Delta \mathrm{CDF}(\tilde{r}_{1\mathrm{NN}})$")
else:
ax.set_xlabel(r"$r_{1\mathrm{NN}}~[\mathrm{Mpc}]$")
ax.set_ylabel(r"$\Delta \mathrm{CDF}(r_{1\mathrm{NN}})$")
fig.tight_layout()
for ext in ["png"]:
if pulled_cdf:
fout = join(plt_utils.fout, f"1nn_diff_pulled.{ext}")
else:
fout = join(plt_utils.fout, f"1nn_diff.{ext}")
print(f"Saving to `{fout}`.")
fig.savefig(fout, dpi=plt_utils.dpi, bbox_inches="tight")
plt.close()
2023-05-24 12:25:22 +02:00
@cache_to_disk(7)
def make_kl(simname, run, nsim, nobs, kwargs):
"""
Calculate the KL divergence between the distribution of nearest neighbour
distances of haloes in a reference simulation with respect to Quijote.
Parameters
----------
simname : str
Simulation name. Must be either `csiborg` or `quijote`.
run : str
Run name.
nsim : int
Simulation index.
nobs : int
Fiducial Quijote observer index. For CSiBORG must be set to `None`.
kwargs : dict
Nearest neighbour reader keyword arguments.
Returns
-------
kl : 1-dimensional array
KL divergence of the distribution of nearest neighbour distances
of each halo in the reference simulation.
"""
2023-05-24 12:25:22 +02:00
paths = csiborgtools.read.Paths(**kwargs["paths_kind"])
reader = csiborgtools.read.NearestNeighbourReader(**kwargs, paths=paths)
# This is the reference PDF. Must be Quijote!
2023-05-24 12:25:22 +02:00
pdf = read_dist("quijote", run, "pdf", kwargs)
return reader.kl_divergence(simname, run, nsim, pdf, nobs=nobs)
@cache_to_disk(7)
def make_ks(simname, run, nsim, nobs, kwargs):
"""
Calculate the KS significance between the distribution of nearest neighbour
distances of haloes in a reference simulation with respect to Quijote.
Parameters
----------
simname : str
Simulation name. Must be either `csiborg` or `quijote`.
run : str
Run name.
nsim : int
Simulation index.
nobs : int
Fiducial Quijote observer index. For CSiBORG must be set to `None`.
kwargs : dict
Nearest neighbour reader keyword arguments.
Returns
-------
ks : 1-dimensional array
KS significance of the distribution of nearest neighbour distances of
each halo in the reference simulation.
"""
2023-05-24 12:25:22 +02:00
paths = csiborgtools.read.Paths(**kwargs["paths_kind"])
reader = csiborgtools.read.NearestNeighbourReader(**kwargs, paths=paths)
# This is the reference CDF. Must be Quijote!
2023-05-24 12:25:22 +02:00
cdf = read_dist("quijote", run, "cdf", kwargs)
return reader.ks_significance(simname, run, nsim, cdf, nobs=nobs)
def get_cumulative_significance(simname, runs, nsim, nobs, kind, kwargs):
2023-05-22 14:42:10 +02:00
"""
Calculate the cumulative significance of the distribution of nearest
neighbours and evaluate it at the same points for all runs.
Parameters
----------
simname : str
Simulation name. Must be either `csiborg` or `quijote`.
runs : list of str
Run names.
nsim : int
Simulation index.
nobs : int
Fiducial Quijote observer index. For CSiBORG must be set to `None`.
kind : str
Must be either `kl` (Kullback-Leibler diverge) or `ks`
(Kolmogorov-Smirnov p-value).
kwargs : dict
Nearest neighbour reader keyword arguments.
Returns
-------
z : 1-dimensional array
Points where the cumulative significance is evaluated.
cumsum : 2-dimensional array of shape `(len(runs), len(z)))`
Cumulative significance of the distribution of nearest neighbours.
2023-05-22 14:42:10 +02:00
"""
significances = []
for run in runs:
if kind == "kl":
x = make_kl(simname, run, nsim, nobs, kwargs)
2023-05-24 12:25:22 +02:00
else:
x = make_ks(simname, run, nsim, nobs, kwargs)
x = numpy.log10(x)
x = x[numpy.isfinite(x)]
x = numpy.sort(x)
significances.append(x)
z = numpy.hstack(significances).reshape(-1, )
if kind == "ks":
zmin, zmax = numpy.percentile(z, [1, 100])
else:
zmin, zmax = numpy.percentile(z, [0.0, 99.9])
z = numpy.linspace(zmin, zmax, 1000, dtype=numpy.float32)
cumsum = numpy.full((len(runs), z.size), numpy.nan, dtype=numpy.float32)
for i, run in enumerate(runs):
x = significances[i]
y = numpy.linspace(0, 1, x.size)
cumsum[i, :] = numpy.interp(z, x, y, left=0, right=1)
2023-05-24 12:25:22 +02:00
return z, cumsum
2023-05-24 12:25:22 +02:00
def plot_significance(simname, runs, nsim, nobs, kind, kwargs, runs_to_mass):
"""
Plot cumulative significance of the 1NN distribution.
Parameters
----------
simname : str
Simulation name. Must be either `csiborg` or `quijote`.
runs : list of str
Run names.
nsim : int
Simulation index.
nobs : int
Fiducial Quijote observer index. For CSiBORG must be set to `None`.
kind : str
Must be either `kl` (Kullback-Leibler diverge) or `ks`
(Kolmogorov-Smirnov p-value).
kwargs : dict
Nearest neighbour reader keyword arguments.
runs_to_mass : dict
Dictionary mapping run names to total halo mass range.
Returns
-------
None
"""
assert kind in ["kl", "ks"]
runs_to_mass = [numpy.mean(runs_to_mass[run]) for run in runs]
with plt.style.context(plt_utils.mplstyle):
norm = mpl.colors.Normalize(vmin=min(runs_to_mass),
vmax=max(runs_to_mass))
cmap = mpl.cm.ScalarMappable(norm=norm, cmap=mpl.cm.viridis)
cmap.set_array([])
fig, ax = plt.subplots(figsize=(3.5, 2.625 * 1.2), nrows=2,
sharex=True, height_ratios=[1, 0.5])
fig.subplots_adjust(hspace=0, wspace=0)
z, cumsum = get_cumulative_significance(simname, runs, nsim, nobs,
kind, kwargs)
for i in range(len(runs)):
ax[0].plot(z, cumsum[i, :], color=cmap.to_rgba(runs_to_mass[i]))
dy = cumsum[-1, :] - cumsum[i, :]
if kind == "kl":
dy *= -1
ax[1].plot(z, dy, color=cmap.to_rgba(runs_to_mass[i]))
cbar_ax = fig.add_axes([1.0, 0.125, 0.035, 0.85])
fig.colorbar(cmap, cax=cbar_ax, ticks=runs_to_mass,
label=r"$\log M_{\rm tot} / M_\odot$")
ax[0].set_xlim(z[0], z[-1])
ax[0].set_ylim(1e-5, 1.)
2023-05-24 12:25:22 +02:00
if kind == "ks":
ax[1].set_xlabel(r"$\log p$-value of $r_{1\mathrm{NN}}$ distribution") # noqa
2023-05-24 12:25:22 +02:00
else:
ax[1].set_xlabel(r"$D_{\mathrm{KL}}$ of $r_{1\mathrm{NN}}$ distribution") # noqa
ax[0].set_ylabel(r"Cumulative norm. counts")
ax[1].set_ylabel(r"$\Delta f$")
2023-05-24 12:25:22 +02:00
fig.tight_layout(h_pad=0, w_pad=0)
2023-05-22 14:42:10 +02:00
for ext in ["png"]:
2023-05-24 12:25:22 +02:00
if simname == "quijote":
paths = csiborgtools.read.Paths(**kwargs["paths_kind"])
2023-05-24 12:25:22 +02:00
nsim = paths.quijote_fiducial_nsim(nsim, nobs)
fout = join(plt_utils.fout, f"significance_{kind}_{simname}_{str(nsim).zfill(5)}.{ext}") # noqa
2023-05-22 14:42:10 +02:00
print(f"Saving to `{fout}`.")
fig.savefig(fout, dpi=plt_utils.dpi, bbox_inches="tight")
2023-05-22 14:42:10 +02:00
plt.close()
def plot_significance_vs_mass(simname, runs, nsim, nobs, kind, kwargs):
2023-05-22 14:42:10 +02:00
"""
2023-05-24 12:25:22 +02:00
Plot significance of the 1NN distance as a function of the total mass.
Parameters
----------
simname : str
Simulation name. Must be either `csiborg` or `quijote`.
runs : list of str
Run names.
nsim : int
Simulation index.
nobs : int
Fiducial Quijote observer index. For CSiBORG must be set to `None`.
kind : str
Must be either `kl` (Kullback-Leibler diverge) or `ks`
(Kolmogorov-Smirnov p-value).
kwargs : dict
Nearest neighbour reader keyword arguments.
Returns
-------
None
2023-05-22 14:42:10 +02:00
"""
print(f"Plotting {kind} significance vs mass.")
2023-05-24 12:25:22 +02:00
assert kind in ["kl", "ks"]
2023-05-22 14:42:10 +02:00
paths = csiborgtools.read.Paths(**kwargs["paths_kind"])
reader = csiborgtools.read.NearestNeighbourReader(**kwargs, paths=paths)
with plt.style.context(plt_utils.mplstyle):
2023-05-22 14:42:10 +02:00
plt.figure()
xs, ys = [], []
for run in runs:
x = reader.read_single(simname, run, nsim, nobs)["mass"]
if kind == "kl":
y = make_kl(simname, run, nsim, nobs, kwargs)
else:
y = numpy.log10(make_ks(simname, run, nsim, nobs, kwargs))
xs.append(x)
ys.append(y)
xs = numpy.concatenate(xs)
ys = numpy.concatenate(ys)
plt.hexbin(xs, ys, gridsize=75, mincnt=1, xscale="log", bins="log")
2023-05-24 12:25:22 +02:00
plt.xlabel(r"$M_{\rm tot} / M_\odot$")
plt.xlim(numpy.min(xs))
2023-05-24 12:25:22 +02:00
if kind == "ks":
plt.ylabel(r"$\log p$-value of $r_{1\mathrm{NN}}$ distribution")
plt.ylim(top=0)
2023-05-24 12:25:22 +02:00
else:
plt.ylabel(r"$D_{\mathrm{KL}}$ of $r_{1\mathrm{NN}}$ distribution")
plt.ylim(bottom=0)
plt.colorbar(label="Bin counts")
2023-05-22 14:42:10 +02:00
plt.tight_layout()
for ext in ["png"]:
2023-05-24 12:25:22 +02:00
if simname == "quijote":
nsim = paths.quijote_fiducial_nsim(nsim, nobs)
fout = (f"significance_vs_mass_{kind}_{simname}"
+ f"_{str(nsim).zfill(5)}.{ext}")
fout = join(plt_utils.fout, fout)
2023-05-22 14:42:10 +02:00
print(f"Saving to `{fout}`.")
plt.savefig(fout, dpi=plt_utils.dpi, bbox_inches="tight")
plt.close()
def plot_kl_vs_ks(simname, runs, nsim, nobs, kwargs):
2023-05-25 16:47:15 +02:00
"""
Plot Kullback-Leibler divergence vs Kolmogorov-Smirnov statistic p-value.
Parameters
----------
simname : str
Simulation name. Must be either `csiborg` or `quijote`.
runs : str
Run names.
nsim : int
Simulation index.
nobs : int
Fiducial Quijote observer index. For CSiBORG must be set to `None`.
kwargs : dict
Nearest neighbour reader keyword arguments.
Returns
-------
None
2023-05-25 16:47:15 +02:00
"""
paths = csiborgtools.read.Paths(**kwargs["paths_kind"])
reader = csiborgtools.read.NearestNeighbourReader(**kwargs, paths=paths)
xs, ys, cs = [], [], []
for run in runs:
cs.append(reader.read_single(simname, run, nsim, nobs)["mass"])
xs.append(make_kl(simname, run, nsim, nobs, kwargs))
ys.append(make_ks(simname, run, nsim, nobs, kwargs))
xs = numpy.concatenate(xs)
ys = numpy.log10(numpy.concatenate(ys))
cs = numpy.log10(numpy.concatenate(cs))
2023-05-25 16:47:15 +02:00
with plt.style.context(plt_utils.mplstyle):
2023-05-25 16:47:15 +02:00
plt.figure()
plt.hexbin(xs, ys, C=cs, gridsize=50, mincnt=0,
reduce_C_function=numpy.median)
2023-05-25 16:47:15 +02:00
plt.colorbar(label=r"$\log M_{\rm tot} / M_\odot$")
plt.xlabel(r"$D_{\mathrm{KL}}$ of $r_{1\mathrm{NN}}$ distribution")
plt.ylabel(r"$\log p$-value of $r_{1\mathrm{NN}}$ distribution")
2023-05-25 16:47:15 +02:00
plt.tight_layout()
for ext in ["png"]:
if simname == "quijote":
nsim = paths.quijote_fiducial_nsim(nsim, nobs)
fout = join(plt_utils.fout,
f"kl_vs_ks_{simname}_{run}_{str(nsim).zfill(5)}.{ext}")
2023-05-25 16:47:15 +02:00
print(f"Saving to `{fout}`.")
plt.savefig(fout, dpi=plt_utils.dpi, bbox_inches="tight")
2023-05-25 16:47:15 +02:00
plt.close()
def plot_kl_vs_overlap(runs, nsim, kwargs):
"""
Plot KL divergence vs overlap for CSiBORG.
Parameters
----------
runs : str
Run names.
nsim : int
Simulation index.
kwargs : dict
Nearest neighbour reader keyword arguments.
Returns
-------
None
"""
paths = csiborgtools.read.Paths(**kwargs["paths_kind"])
nn_reader = csiborgtools.read.NearestNeighbourReader(**kwargs, paths=paths)
xs, ys1, ys2, cs = [], [], [], []
for run in runs:
nn_data = nn_reader.read_single("csiborg", run, nsim, nobs=None)
nn_hindxs = nn_data["ref_hindxs"]
mass, overlap_hindxs, summed_overlap, prob_nomatch = get_overlap(nsim)
# We need to match the hindxs between the two.
hind2overlap_array = {hind: i for i, hind in enumerate(overlap_hindxs)}
mask = numpy.asanyarray([hind2overlap_array[hind]
for hind in nn_hindxs])
summed_overlap = summed_overlap[mask]
prob_nomatch = prob_nomatch[mask]
mass = mass[mask]
kl = make_kl("csiborg", run, nsim, nobs=None, kwargs=kwargs)
xs.append(kl)
ys1.append(1 - numpy.mean(prob_nomatch, axis=1))
ys2.append(numpy.std(prob_nomatch, axis=1))
cs.append(numpy.log10(mass))
xs = numpy.concatenate(xs)
ys1 = numpy.concatenate(ys1)
ys2 = numpy.concatenate(ys2)
cs = numpy.concatenate(cs)
with plt.style.context(plt_utils.mplstyle):
plt.figure()
plt.hexbin(xs, ys1, C=cs, gridsize=50, mincnt=0,
reduce_C_function=numpy.median)
plt.colorbar(label=r"$\log M_{\rm tot} / M_\odot$")
plt.xlabel(r"$D_{\mathrm{KL}}$ of $r_{1\mathrm{NN}}$ distribution")
plt.ylabel(r"$1 - \langle \eta^{\mathcal{B}}_a \rangle_{\mathcal{B}}$")
plt.tight_layout()
for ext in ["png"]:
fout = join(plt_utils.fout,
f"kl_vs_overlap_mean_{str(nsim).zfill(5)}.{ext}")
print(f"Saving to `{fout}`.")
plt.savefig(fout, dpi=plt_utils.dpi, bbox_inches="tight")
plt.close()
with plt.style.context(plt_utils.mplstyle):
plt.figure()
plt.hexbin(xs, ys2, C=cs, gridsize=50, mincnt=0,
reduce_C_function=numpy.median)
plt.colorbar(label=r"$\log M_{\rm tot} / M_\odot$")
plt.xlabel(r"$D_{\mathrm{KL}}$ of $r_{1\mathrm{NN}}$ distribution")
plt.ylabel(r"Ensemble std of summed overlap")
plt.tight_layout()
for ext in ["png"]:
fout = join(plt_utils.fout,
f"kl_vs_overlap_std_{str(nsim).zfill(5)}.{ext}")
print(f"Saving to `{fout}`.")
plt.savefig(fout, dpi=plt_utils.dpi, bbox_inches="tight")
plt.close()
###############################################################################
# Command line interface #
###############################################################################
if __name__ == "__main__":
parser = ArgumentParser()
parser.add_argument('-c', '--clean', action='store_true')
args = parser.parse_args()
neighbour_kwargs = csiborgtools.neighbour_kwargs
runs_to_mass = {
"mass001": (12.4, 12.8),
"mass002": (12.6, 13.0),
"mass003": (12.8, 13.2),
"mass004": (13.0, 13.4),
"mass005": (13.2, 13.6),
"mass006": (13.4, 13.8),
"mass007": (13.6, 14.0),
"mass008": (13.8, 14.2),
"mass009": (14.0, 14.4), # There is no upper limit.
}
2023-05-25 16:54:24 +02:00
cached_funcs = ["get_overlap", "read_dist", "make_kl", "make_ks"]
if args.clean:
for func in cached_funcs:
2023-05-25 16:54:24 +02:00
print(f"Cleaning cache for function {func}.")
delete_disk_caches_for_function(func)
# Plot 1NN distance distributions.
if False:
for i in range(1, 10):
run = f"mass00{i}"
for pulled_cdf in [True, False]:
plot_dist(run, "cdf", neighbour_kwargs, runs_to_mass,
pulled_cdf=pulled_cdf,)
plot_dist(run, "pdf", neighbour_kwargs, runs_to_mass)
# Plot 1NN CDF differences.
if False:
runs = [f"mass00{i}" for i in range(1, 10)]
for pulled_cdf in [True, False]:
plot_cdf_diff(runs, neighbour_kwargs, pulled_cdf=pulled_cdf,
runs_to_mass=runs_to_mass)
if False:
runs = [f"mass00{i}" for i in range(1, 9)]
for kind in ["kl", "ks"]:
plot_significance("csiborg", runs, 7444, nobs=None, kind=kind,
kwargs=neighbour_kwargs,
runs_to_mass=runs_to_mass)
if True:
runs = [f"mass00{i}" for i in range(1, 10)]
for kind in ["kl", "ks"]:
plot_significance_vs_mass("csiborg", runs, 7444, nobs=None,
kind=kind, kwargs=neighbour_kwargs)
if False:
runs = [f"mass00{i}" for i in range(1, 10)]
plot_kl_vs_ks("csiborg", runs, 7444, None, kwargs=neighbour_kwargs)
if False:
runs = [f"mass00{i}" for i in range(1, 10)]
plot_kl_vs_overlap(runs, 7444, neighbour_kwargs)