Skip to content
Snippets Groups Projects
Commit da3a5663 authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Save: Switch to tab-separated output.

parent 06e6f61e
Branches
Tags
1 merge request!10Move to gtk3 and new command protocol
...@@ -295,7 +295,7 @@ class Experiment(object): ...@@ -295,7 +295,7 @@ class Experiment(object):
"""Return dict of strings with experiment parameters and data.""" """Return dict of strings with experiment parameters and data."""
buf = {} buf = {}
buf['params'] = self.get_info_text() buf['params'] = self.get_info_text()
buf.update({exp : df.to_string() for exp, df in self.df.items()}) buf.update({exp : df.to_csv(sep='\t') for exp, df in self.df.items()})
return buf return buf
......
...@@ -42,7 +42,7 @@ def manSave(current_exp): ...@@ -42,7 +42,7 @@ def manSave(current_exp):
Gtk.STOCK_SAVE, Gtk.ResponseType.OK)) Gtk.STOCK_SAVE, Gtk.ResponseType.OK))
filters = [Gtk.FileFilter()] filters = [Gtk.FileFilter()]
filters[0].set_name("Text (.txt)") filters[0].set_name("Tab-separated Text (.txt)")
filters[0].add_pattern("*.txt") filters[0].add_pattern("*.txt")
fcd.set_do_overwrite_confirmation(True) fcd.set_do_overwrite_confirmation(True)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment