You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
yeh should probably work, pull-requests to fix are welcome
In [11]: df.to_csv()
Out[11]: ',0,1,test\n0,a,aa,txt\n1,b,bb,txt\n2,c,cc,txt\n'
In [12]: df.to_csv(columns=['test',0,1])
Out[12]: ',test,0,1\n0,txt,,\n1,txt,,\n2,txt,,\n'
Version 0.17.1
* tag 'v0.17.1': (168 commits)
add nbviewer link
Revert "DOC: fix sponsor notice"
DOC: a few touchups
DOC: fix sponsor notice
DOC: warnings and remove HTML
COMPAT: compat of scalars on all platforms, xref pandas-dev#11638
DOC: fix build errors/warnings
DOC: whatsnew edits
DOC: fix link syntax
DOC: update release.rst / whatsnew edits
BUG: fix col iteration in DataFrame.round, pandas-dev#11611
DOC: Clarify foramtting
BUG: pandas-dev#11638 return correct dtype for int and float
BUG: pandas-dev#11637 fix to_csv incorrect output.
DOC: sponsor notice
BUG: indexing with a range , pandas-dev#11652
Fix link to numexpr
ENH: fixup tilde expansion, xref pandas-dev#11438
ENH: tilde expansion for write output formatting functions, pandas-dev#11438
DOC: fix up doc-string creations in generic.py
...
This used to work OK in version 0.15 but stopped working in versions 0.16+.
The following output is produced (values from columns 0 and 1 are missing):
Replacing 'test' with an integer value or skipping the columns argument works fine.
INSTALLED VERSIONS
commit: None
python: 2.7.9.final.0
python-bits: 64
OS: Linux
OS-release: 2.6.18-238.9.1.el5
machine: x86_64
processor: x86_64
byteorder: little
LC_ALL: None
LANG: en_US
pandas: 0.17.0
...
The text was updated successfully, but these errors were encountered: