Endlich habe ich eine Lösung gefunden.
Das Beispielskript finden Sie unten.
#!/usr/bin/env python3
import pickle
import pandas as pd
import itertools
import numpy as np
data = pd.DataFrame(np.random.randn(10, 5), columns=('0_n', '1_n', '0_p', '1_p', 'x'))
indices = set()
groups = set()
others = set()
for c in data.columns:
if '_' in c:
(i, g) = c.split('_')
c2 = pd.MultiIndex.from_tuples((i, g),)
indices.add(int(i))
groups.add(g)
else:
others.add(c)
columns = list(itertools.product(groups, indices))
columns = pd.MultiIndex.from_tuples(columns)
ret = pd.DataFrame(columns=columns)
for c in columns:
ret[c] = data['%d_%s' % (int(c[1]), c[0])]
for c in others:
ret[c] = data['%s' % c]
ret.rename(columns={'total': 'total_indices'}, inplace=True)
print("Before:")
print(data)
print("")
print("After:")
print(ret)
Das tut mir leid...
Ich musste die Sortierung des Siegers anpassen, um das spezifische Spaltenformat von OP zu erhalten:
df = df.sort_index(level=0, axis=1)
0 1 e n p e n p 0 -0.995452 -3.237846 1.298927 -0.269253 -0.857724 -0.461103
quelle
Es gibt eine einfachere Lösung:
Um Spaltennamen anzuordnen, kann man auch Folgendes tun:
So ändern Sie die Spaltenebenen:
quelle