I have a pandas data frame where the columns are dates and each row is an independent time series.
I try to get the last value of each row using the following:
df['last'] = df.iloc[:,-1]
However some rows have NAN values in the last column.
How can I get the last non NAN value in a row?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…