Skip to content

Commit

Permalink
Don't write index to CSV file in multi
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Dec 11, 2018
1 parent 625bb1a commit 9a68aa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lenskit/batch/_multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def run(self):
run_data.append(run)
run_df = pd.DataFrame(run_data)
# overwrite files to show progress
run_df.to_csv(self.run_csv)
run_df.to_csv(self.run_csv, index=False)
run_df.to_parquet(self.run_file, compression=None)

def _run_algo(self, run_id, arec, data):
Expand Down

0 comments on commit 9a68aa1

Please sign in to comment.