halotools
halotools copied to clipboard
Python package for studying large scale structure, cosmology, and galaxy evolution using N-body simulations and halo models
As requested by @sssaito to support work on ongoing project with @duncandc - we will need jackknife error estimates on the tpcf multipole calculations, which are currently only supported for...
To support ongoing work with @sssaito, and in analogy to mean radial velocity profiles and radial velocity dispersion profiles, include a new cython engine and user-facing convenience function to calculate...
After updating to astropy-helpers v2.0 in #788, there are now many warnings that appear during the test suite that will need to be resolved. Most seem to be `UnicodeWarning`, but...
It appears that halotools doesn't really need c++. If that's the case, using C makes life of downstream packaging a lot easier.
This came up during the re-review of the code in #823, and should be implemented provided that Halotools models can be wrapped by `astropy.modeling` without a major overhaul of the...
Mostly this will only impact the halo catalog and merger tree dtype formatting.
I cannot find the citation to justify our jackknife pair counting weighting scheme. Currently we count pairs as: 1. both within the removed sample as 0.0 2. one within and...
The most common way to estimate errors in a MCF analysis is to repeatedly count marked pairs with scrambled marks. The current API makes this process very slow, because with...
chord_to_cartesian() should really be renamed to theta_to_chord().
Suppose the user knows that there is a `bolshoi` catalog at z ~ 0.35 stored in cache, but cannot remember the `version_name`: ``` >>> halocat = CachedHaloCatalog(simname='bolshoi', redshift=0.35) ``` In...