@@ -1126,6 +1126,8 @@ def to_csv(self, path_or_buf, sep=",", na_rep='', float_format=None,
1126
1126
----------
1127
1127
path_or_buf : string or file handle / StringIO
1128
1128
File path
1129
+ sep : character, default ","
1130
+ Field delimiter for the output file.
1129
1131
na_rep : string, default ''
1130
1132
Missing data representation
1131
1133
float_format : string, default None
@@ -1143,12 +1145,13 @@ def to_csv(self, path_or_buf, sep=",", na_rep='', float_format=None,
1143
1145
sequence should be given if the DataFrame uses MultiIndex. If
1144
1146
False do not print fields for index names. Use index_label=False
1145
1147
for easier importing in R
1148
+ nanRep : deprecated, use na_rep
1146
1149
mode : Python write mode, default 'w'
1147
- sep : character, default ","
1148
- Field delimiter for the output file.
1149
1150
encoding : string, optional
1150
1151
a string representing the encoding to use if the contents are
1151
1152
non-ascii, for python versions prior to 3
1153
+ quoting : optional constant from csv module
1154
+ defaults to csv.QUOTE_MINIMAL
1152
1155
"""
1153
1156
if nanRep is not None : # pragma: no cover
1154
1157
import warnings
0 commit comments