You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to create a MultiIndex from an array just now, and found out it hadn't been implemented, so have this PR to create MI from arrays.
```python
>>> arrays = [['a', 'a', 'b', 'b'], ['red', 'blue', 'red', 'blue']]
>>> ks.MultiIndex.from_arrays(arrays)
MultiIndex([('a', 'red'),
('a', 'blue'),
('b', 'red'),
('b', 'blue')],
names=['number', 'color'])
```
0 commit comments