I have a very large pandas.Dataframe and want to create a new Dataframe by selecting all columns where one row has a specific value.
A B C D E
Region Nord Süd West Nord Nord
value 2.3 1.2 4.2 0.5 1.3
value2 20 400 30 123 200
Now i want to create a new DataFrame with all columns where the row "Region" has the value "Nord".
How can it be done? The result should look like this:
A D E
Region Nord Nord Nord
value 2.3 0.5 1.3
value2 20 123 200
Thanks in advance