Classes
FKPCatalog(data, randoms[, BoxSize, BoxPad, …]) |
An interface for simultaneous modeling of a data CatalogSource and a randoms CatalogSource, in the spirit of Feldman, Kaiser, and Peacock, 1994. |
nbodykit.source.catalog.fkp.FKPCatalog(data, randoms, BoxSize=None, BoxPad=0.02, use_cache=True)[source]¶An interface for simultaneous modeling of a data CatalogSource and a
randoms CatalogSource, in the spirit of
Feldman, Kaiser, and Peacock, 1994.
This main functionality of this class is:
data CatalogSource and randoms CatalogSource, using
column names prefixed with “data/” or “randoms/”BoxSize of the source, by
finding the maximum Cartesian extent of the randomsdata and randoms| Parameters: |
|
|---|
References
Attributes
attrs |
A dictionary storing relevant meta-data about the CatalogSource. |
columns |
Columns for individual species can be accessed using a species/ prefix and the column name, i.e., data/Position. |
hardcolumns |
Hardcolumn of the form species/name |
species |
List of species names |
use_cache |
If set to True, use the built-in caching features of dask to cache data in memory. |
Methods
compute(*args, **kwargs) |
Our version of dask.compute() that computes multiple delayed dask collections at once. |
copy() |
Return a shallow copy of the object, where each column is a reference of the corresponding column in self. |
get_hardcolumn(col) |
Construct and return a hard-coded column. |
make_column(array) |
Utility function to convert an array-like object to a dask.array.Array. |
read(columns) |
Return the requested columns as dask arrays. |
save(output, columns[, datasets, header]) |
Save the CatalogSource to a bigfile.BigFile. |
to_mesh([Nmesh, BoxSize, dtype, interlaced, …]) |
Convert the FKPCatalog to a mesh, which knows how to “paint” the FKP density field. |
view([type]) |
Return a “view” of the CatalogSource object, with the returned type set by type. |
to_mesh(Nmesh=None, BoxSize=None, dtype='f4', interlaced=False, compensated=False, window='cic', fkp_weight='FKPWeight', comp_weight='Weight', nbar='NZ', selection='Selection', position='Position')[source]¶Convert the FKPCatalog to a mesh, which knows how to “paint” the FKP density field.
Additional keywords to the to_mesh() function include the
FKP weight column, completeness weight column, and the column
specifying the number density as a function of redshift.
| Parameters: |
|
|---|