Skip to content
Snippets Groups Projects
Commit e801a369 authored by DIANE's avatar DIANE
Browse files

Removing the empty strings columns

parent a547425d
No related branches found
No related tags found
No related merge requests found
...@@ -88,7 +88,9 @@ class DxRead: ...@@ -88,7 +88,9 @@ class DxRead:
return self.spectra return self.spectra
@property @property
def md_df_(self): def md_df_(self):
return self.metadata_.drop("concentrations", axis = 1) me = self.metadata_.drop("concentrations", axis = 1)
me = me.drop(me.columns[(me == '').all()], axis = 1)
return me
@property @property
def chem_data_(self): def chem_data_(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment