Skip to content

Commit

Permalink
fixed example data
Browse files Browse the repository at this point in the history
  • Loading branch information
jlvdb committed Nov 22, 2024
1 parent e7972b2 commit 08e78e0
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/yaw/examples/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
>>> from yaw import examples # reads the data sets from disk
>>> examples.w_sp
CorrFunc(counts=dd|dr, auto=False, num_bins=30, num_patches=64)
CorrFunc(counts=dd|dr|rd|rr, auto=False, binning=30 bins @ (0.100...1.200], num_patches=64)
"""

from pathlib import Path
Expand All @@ -23,15 +23,15 @@

_path = Path(__file__).parent

w_sp = CorrFunc.from_file(_path / "cross_1.hdf")
w_sp = CorrFunc.from_file(_path / "cross.hdf")
"""Example data from a crosscorrelation measurement
(:obj:`~yaw.CorrFunc` instance)."""

w_ss = CorrFunc.from_file(_path / "auto_reference.hdf")
"""Example data from a reference sample autocorrelation measurement
(:obj:`~yaw.CorrFunc` instance)."""

w_pp = CorrFunc.from_file(_path / "auto_unknown_1.hdf")
w_pp = CorrFunc.from_file(_path / "auto_unknown.hdf")
"""Example data from a unknown sample autocorrelation measurement
(:obj:`~yaw.CorrFunc` instance)."""

Expand Down
Binary file modified src/yaw/examples/auto_reference.hdf
Binary file not shown.
Binary file added src/yaw/examples/auto_unknown.hdf
Binary file not shown.
Binary file removed src/yaw/examples/auto_unknown_1.hdf
Binary file not shown.
Binary file added src/yaw/examples/cross.hdf
Binary file not shown.
Binary file removed src/yaw/examples/cross_1.hdf
Binary file not shown.

0 comments on commit 08e78e0

Please sign in to comment.