Skip to content
Snippets Groups Projects
Commit bd9db227 authored by Schneider Leo's avatar Schneider Leo
Browse files

datasets

parent 91ea116b
No related branches found
No related tags found
No related merge requests found
...@@ -150,7 +150,8 @@ df = pd.read_pickle('database/data_prosit_merged_holdout.pkl') ...@@ -150,7 +150,8 @@ df = pd.read_pickle('database/data_prosit_merged_holdout.pkl')
print(len(df)) print(len(df))
print(df.head()) print(df.head())
df = df[df['Retention time']!=[0,0,0,0,0,0]] df['Retention time']=df['Retention time'].apply(lambda x : x[0])
df = df.loc[df['Retention time']!=0]
print(len(df)) print(len(df))
print(df.head()) print(df.head())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment