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
>>>arr=ndtest('axis1=x1..x3;axis2=x1..x3')
>>>arr.insert(arr['axis1[x1,x2]'], before='axis1[x3]')
ValueError: ['x1'] isambiguous (validinaxis1, axis2)
>>># it works if the values has not the axis>>>arr.insert(arr['axis1[x1]'], before='axis1[x3]', label='x1')
axis1\axis2x1x2x3x1012x2345x1012x3678>>># it works if the labels are not ambiguous>>>arr2=arr.set_labels('axis2', str.upper)
>>>arr2.insert(arr2['axis1[x2,x1]'], before='axis1[x3]')
axis1\axis2X1X2X3x1012x2345x2345x1012x3678