Bases: object
Dictionary-like object that lazily-loads ResultsTable objects.
Parameters: | fn_dict : dict
index_file : str
dbfn : str
extra : pandas.dataframe
cls : ResultsTable class or subclass
modifier : callable
|
---|
Notes
When a key is provided for the first time, the workflow is ResultsTable(fn, **kwargs) -> attach extra -> send to modifier -> return extended and modified ResultsTable. Subsequent access of the same key will immediately return the extended-and-modified ResultsTable.
Methods
items() | |
keys() | |
values() |
Methods
__init__(fn_dict, dbfn, index_file[, extra, ...]) | Dictionary-like object that lazily-loads ResultsTable objects. |
items() | |
keys() | |
values() |
Dictionary-like object that lazily-loads ResultsTable objects.
Parameters: | fn_dict : dict
index_file : str
dbfn : str
extra : pandas.dataframe
cls : ResultsTable class or subclass
modifier : callable
|
---|
Notes
When a key is provided for the first time, the workflow is ResultsTable(fn, **kwargs) -> attach extra -> send to modifier -> return extended and modified ResultsTable. Subsequent access of the same key will immediately return the extended-and-modified ResultsTable.