I am new to python and so far I am loving the ipython notebook for learning. Am I using the to_csv() function to write out a pandas dataframe out to a file. I wanted to o
@rpattiso thank you.
try opening and closing the file yourself:
outfile = open(path+'filename.csv', 'wb') df.to_csv(outfile) outfile.close()