Skip to content

Commit

Permalink
Make a masked Table
Browse files Browse the repository at this point in the history
  • Loading branch information
mwcraig committed Nov 27, 2023
1 parent bd73a6e commit c24a0bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stellarphot/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit c24a0bd

Please sign in to comment.