Transposer un dataframe
Fermé
lebcel
-
Modifié le 16 juil. 2020 à 22:01
hugobldl Messages postés 9 Date d'inscription vendredi 17 juillet 2020 Statut Membre Dernière intervention 22 juillet 2020 - 17 juil. 2020 à 13:44
hugobldl Messages postés 9 Date d'inscription vendredi 17 juillet 2020 Statut Membre Dernière intervention 22 juillet 2020 - 17 juil. 2020 à 13:44
1 réponse
hugobldl
Messages postés
9
Date d'inscription
vendredi 17 juillet 2020
Statut
Membre
Dernière intervention
22 juillet 2020
Modifié le 17 juil. 2020 à 13:49
Modifié le 17 juil. 2020 à 13:49
Salut, je sais pas si c'est quelque chose comme ça que tu recherches mais je penses que la base correspond a ton besoin !
J'espère avoir été utile ! :)
import numpy
tab = {'ID': ['ID1','ID1','ID1','ID2','ID2'],
'Col': [-5,0,2,0,6],
'Val': [18,22,20,10,10]}
tab2 = {'ID':[]}
tableau = []
for listes in tab.values():
tableau.append(listes)
tableau = numpy.transpose(tableau)
for listes in tableau:
if listes[0] not in tab2['ID']:
tab2['ID'].append(listes[0])
colonne = 'Col_M'+str(abs(int(listes[1])))
if colonne not in tab2:
tab2[colonne] = []
tab2[colonne].append(int(listes[2]))
else:
tab2[colonne].append(int(listes[2]))
print(tab2)
J'espère avoir été utile ! :)