Charles Burkland
Charles Burkland
**Description** Right now, `sort` only applies to the outermost level. **Example** I'm not sure of a good parameter name, but this is roughly what I have in mind ```python ih.sort(depths=(0,...
I was unable to find HLoc in the docs, and the `IndexHierarchy` examples do not show this. It is briefly mentioned in on the of the articles, but I think...
**Description** When you use the astype interface on a frame, `consolidate_blocks` is set to True by default. This is not ideal, as no other interface that exposes that paramter defaults...
**Example** ```python from io import StringIO import static_frame as sf raw = StringIO('count,score,color\n1,1.3,red\n3,5.2,green\n100,3,blue\n4,9.00,black') sf.Frame.from_csv(raw, store_filter=sf.StoreFilter(value_format_float_positional="{:.2f}")) ``` The resulting frame is no different than if the `store_filter` was not provided ```python...
**Description** There is the opportunity to optimize `Yarn` store exporters, if the buses making up the Yarn all are backed by disk in the same storage format as what is...
**Example** This works as expected: ```python index = sf.Index(["\0"]) assert index.equals(index) assert index.isin(index)[0] ``` but this does not! ```python index = sf.Index(["\0"], dtype=object) assert index.equals(index) assert not index.isin(index)[0] ``` **Platform**...
`index_constructors`/`columns_constructors` not exposed on `sf.Frame.from_pandas` for multi-indices.
**Example** ```python index = sf.IndexHierarchy.from_labels( [ ("a", ("b", "c")), ("a", "d"), ] ) assert 1 == index.loc_to_iloc(("a", "d")) index.loc_to_iloc(("a", ("b", "c"))) # Raises the following RuntimeError ``` ``` ~/.env38/lib/python3.8/site-packages/static_frame/core/index_hierarchy.py in...