Estefani Gaytan Nunez

upload

This diff is collapsed. Click to expand it.
......@@ -36,7 +36,8 @@ __author__ = 'egaytan'
def savescreen(output, dic, path):
if output:
DF.from_dict(dic).to_csv(path+'.csv', sep = "\t", index = True)
#DF.from_dict(dic).to_csv(path+'.csv', sep = "\t", index = True)
DF(dic).T.to_csv(path+'.csv', sep = "\t", index = True)
####################################################################################
# MAIN PROGRAM #
......