Read and analyse results generated by rapidpe-rift-pipe
Project description
Read Rapid-PE
This is a package to read Rapid-PE outputs.
Install
Install from PyPI
This read-rapidpe package is available on PyPI: https://pypi.org/project/read-rapidpe/
pip install read-rapidpe
Install in dev mode
git clone git@git.ligo.org:yu-kuang.chu/read-rapidpe.git
cd read-rapidpe
pip install -e .
Example Usage
Reading files
from read_rapidpe import RapidPE_result
run_dir = "path/to/run_dir"
result = RapidPE_result.from_run_dir(run_dir)
There are three optional arguments:
use_ligolw( default =True) : whether to useligo.lwto read XML files.extrinsic_table( default =True) : whether to load extrinsic parameter as well.parallel_n( default =1) : number of parallel jobs when reading XML files.
For example, one can do the following to speed up the reading process:
result = RapidPE_result.from_run_dir(run_dir, use_ligolw=False, extrinsic_table=False, parallel_n=4)
Plot marginalized log-likelihood on m1-m2 grid points
import matplotlib.pyplot as plt
# Plot marginalized-log-likelihood over intrinsic parameter (mass_1/mass_2) grid points
plt.scatter(result.mass_1, result.mass_2, c=result.marg_log_likelihood )
plt.xlabel("$m_1$")
plt.ylabel("$m_2$")
plt.colorbar(label="$\ln(L_{marg})$")
Plot interpolated likelihood
import matplotlib.pyplot as plt
import numpy as np
# Create Random m1, m2 samples
m1 = np.random.random(10000)*5
m2 = np.random.random(10000)*5
# After calling result.do_interpolate_marg_log_likelihood_m1m2(),
# the method result.log_likelihood(m1, m2) will be avalible.
result.do_interpolate_marg_log_likelihood_m1m2()
# Calculate interpolated log_likelihood
log_likelihood = result.log_likelihood(m1, m2)
# =============== Plotting ===============
# Plot interpolated likelihood
plt.scatter(m1, m2, c=np.exp(log_likelihood), marker=".", s=3, alpha=0.1)
# Plot marginalized likelihood on grid points
plt.scatter(result.mass_1, result.mass_2, c=np.exp(result.marg_log_likelihood), marker="+", vmin=0)
plt.xlabel("$m_1$")
plt.ylabel("$m_2$")
plt.colorbar(label=r"$\mathcal{L}$")
Convert to Pandas DataFrame
import pandas as pd
from read_rapidpe import RapidPE_grid_point
grid_point = RapidPE_grid_point.from_xml("ILE_iteration_xxxxxxxxxx.samples.xml.gz")
pd.DataFrame(grid_point.extrinsic_table)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
read_rapidpe-0.5.5.tar.gz
(17.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file read_rapidpe-0.5.5.tar.gz.
File metadata
- Download URL: read_rapidpe-0.5.5.tar.gz
- Upload date:
- Size: 17.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.6 Darwin/21.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ac5380d44a8249e72bd1b28523b84398595a8b9f6173c06f2e6f71fb95f3b56
|
|
| MD5 |
778e8077e77d7b10dcbb93ca38ad9039
|
|
| BLAKE2b-256 |
7a0fe5fe27a8a9541f3e434f3604eef386a9f36a9a07da22ef99fec6306bdd44
|
File details
Details for the file read_rapidpe-0.5.5-py3-none-any.whl.
File metadata
- Download URL: read_rapidpe-0.5.5-py3-none-any.whl
- Upload date:
- Size: 20.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.6 Darwin/21.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28daf0a0e25e94c7a5e3ad14ea62fb4748212ded70329d1d79624316e7b71c91
|
|
| MD5 |
b95f80b5b25a59f4d49b9a6d7afb2e00
|
|
| BLAKE2b-256 |
b3cf906cb6aba7868016d74ad62c9c9a08fec42c3a5b70fd83ffe4af8d5c670d
|