Showing
4 changed files
with
2 additions
and
1 deletions
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
... | @@ -36,7 +36,8 @@ __author__ = 'egaytan' | ... | @@ -36,7 +36,8 @@ __author__ = 'egaytan' |
36 | 36 | ||
37 | def savescreen(output, dic, path): | 37 | def savescreen(output, dic, path): |
38 | if output: | 38 | if output: |
39 | - DF.from_dict(dic).to_csv(path+'.csv', sep = "\t", index = True) | 39 | + #DF.from_dict(dic).to_csv(path+'.csv', sep = "\t", index = True) |
40 | + DF(dic).T.to_csv(path+'.csv', sep = "\t", index = True) | ||
40 | 41 | ||
41 | #################################################################################### | 42 | #################################################################################### |
42 | # MAIN PROGRAM # | 43 | # MAIN PROGRAM # | ... | ... |
-
Please register or login to post a comment