Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 98cd4399 authored by NADAL Morgane's avatar NADAL Morgane
Browse files

small correction to delete NaN in pd df

parent df243383
No related branches found
No related tags found
No related merge requests found
......@@ -652,7 +652,7 @@ if __name__ == '__main__':
concatenated_features_df = concatenated_features_df.append(features_df)
# If some rows (ie. somas0) have NaN, drop them
# -- due to best fitting ellipsoid algo (JTJ is singular due to convex hull being flat)
concatenated_features_df.dropna()
concatenated_features_df = concatenated_features_df.dropna(axis=0, how="any")
# Save to .csv in the parent repository
if save_csv is None:
......
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