From c24a0bdf7934ca19d0319c3f899950bcdeb257f0 Mon Sep 17 00:00:00 2001 From: Matt Craig Date: Mon, 27 Nov 2023 08:58:30 -0600 Subject: [PATCH] Make a masked Table --- stellarphot/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stellarphot/core.py b/stellarphot/core.py index 63fa6837..4d8e8542 100644 --- a/stellarphot/core.py +++ b/stellarphot/core.py @@ -341,7 +341,7 @@ def clean(self, remove_rows_with_mask=True, **other_restrictions): >>> from astropy.table import Table >>> from stellarphot import BaseEnhancedTable # Any subclasses will work too - >>> t = Table([[1, 2, 3], [1, 2, 3]], names=('a', 'b')) + >>> t = Table([[1, 2, 3], [1, 2, 3]], names=('a', 'b'), masked=True) >>> bet = BaseEnhancedTable(t) >>> bet['a'].mask = [True, False, False] >>> bet['b'].mask = [False, False, True]