Skip to content
Snippets Groups Projects
Commit 1b9a07f8 authored by Christopher Randolph Rhodes's avatar Christopher Randolph Rhodes
Browse files

No longer export slice, relative_slice, and mask (all non-serialized) to CSV export

parent ddbbe826
No related branches found
No related tags found
2 merge requests!18Completed (de)serialization of RoiSet,!16Completed (de)serialization of RoiSet
......@@ -572,7 +572,7 @@ class RoiSet(object):
if k == 'dataframe':
dfpa = subdir / (pr + '.csv')
dfpa.parent.mkdir(parents=True, exist_ok=True)
self._df.to_csv(dfpa, index=False)
self._df.drop(['slice', 'relative_slice', 'mask'], axis=1).to_csv(dfpa, index=False)
record[k] = dfpa
return record
......
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