I have a large DataFrame that contains a lot of stellar parameters from a range of sources for comparison. E.g. for stellar temperature I have anywhere between 1 and 6 results for a star in separate columns (eg. of table here: https://i.stack.imgur.com/LIGdZ.png). I want to collapse these columns to one 'Temperature' column which takes the GAIA_Teff preferably, then if that is not available then the V&F_Teff and so on. Is there a simple dataframe method that can do this or should I just use a bunch of if statements or similar?
Thanks