results

Base class for results

class Results(*arg, **kw)[source]

Bases: defaultdict

Main class for results.

__init__(*arg, **kw)[source]
append(d)[source]
from_csv(path)[source]

Load csv of each object.

to_csv(path)[source]

Save csv of each object.

to_dataframes()[source]

Return a dict of three dataframes.

update([E, ]**F) None.  Update D from dict/iterable E and F.[source]

If E is present and has a .keys() method, then does: for k in E: D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]