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
>>> ind = tm.makeCustomIndex(5, 5)
>>> ind.set_levels([[1, 2]]) # Wrong Error
Traceback
...
ValueError: Length of names (5) must be same as level (1)
>>> ind = tm.makeCustomIndex(5, 5)
>>> ind.set_levels([[1, 2]], inplace=True) # Wrong Error
Traceback
...
ValueError: Length of names (5) must be same as level (1)
>>> ind = tm.makeCustomIndex(5, 5)
>>> ind.levels = [[1, 2]] # Wrong Error
Traceback
...
ValueError: Length of names (5) must be same as level (1)