Constructor for BlockManager and SingleBlockManager with same signature.
(cls, blocks: list[Block], axes: list[Index])
| 1142 | |
| 1143 | @classmethod |
| 1144 | def from_blocks(cls, blocks: list[Block], axes: list[Index]) -> Self: |
| 1145 | """ |
| 1146 | Constructor for BlockManager and SingleBlockManager with same signature. |
| 1147 | """ |
| 1148 | return cls(blocks, axes, verify_integrity=False) |
| 1149 | |
| 1150 | # ---------------------------------------------------------------- |
| 1151 | # Indexing |
no test coverage detected