myDataTradeSWE = myDataTrade[(myDataTrade['from']=='SWE') & (myDataTrade['Year']<2015)]
myDataTradeSWE.head(10)
this is the code of the data frame and the data it returns the "VAL" column is the one i need to order from high to low.
myDataTradeSWE = myDataTrade[(myDataTrade['from']=='SWE') & (myDataTrade['Year']<2015)]
myDataTradeSWE.head(10)
this is the code of the data frame and the data it returns the "VAL" column is the one i need to order from high to low.