Posts by Léo Lamera • 41 points
2 posts
-
1
votes1
answer6569
viewsQ: How to join the lines of two Dataframes with Python?
Hello! I need to join lines of two dataframes with python - pandas. For example, let’s say I have these two dataframes X | Y | Z 1 | 2 | 3 4 | 5 | 6 and A | B | C 7 | 8 | 9 0 | 0 | 0 now I need to…
-
3
votes2
answers3465
viewsQ: How to invert the order of columns of a Dataframe with Python
Oops, I wonder how I can invert entire columns with using python. FRUTA | VITAMINA | PREÇO LARANJA | C | 2.00 MAÇÃ | B1 | 2.00 BANANA | B2 | 1.00 I would like to know how I can transform the…