I have this following csv and it looks like this:
I want to detect if there is any cells that are more than 1.25 in values.
I have tried using this code but it seems wrong. Any ideas? (I use loop because it's more than 1 csv)
dflist = []
for i, file in enumerate(flist):
df = pd.read_csv(file, skiprows = [0,1,3,4])
dflist.append(df)
if df.iloc[:,45:52].values.flatten()[i] >= 1.2:
print([i],'Hard Landing')
else:
print([i],'Normal Flight')