This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Table(list): | |
| """ | |
| a table object that can be sliced like a numpy array | |
| """ | |
| def __init__(self, *args, has_header=True): | |
| self.has_header = has_header | |
| if has_header: | |
| self.header_index = {} |
OlderNewer