@@ -2036,9 +2036,8 @@ def to_parquet(self, fname, engine='auto', compression='snappy',
2036
2036
returns = fmt .return_docstring )
2037
2037
def to_string (self , buf = None , columns = None , col_space = None , header = True ,
2038
2038
index = True , na_rep = 'NaN' , formatters = None , float_format = None ,
2039
- sparsify = None , index_names = True , justify = None ,
2040
- line_width = None , max_rows = None , max_cols = None ,
2041
- show_dimensions = False ):
2039
+ sparsify = None , index_names = True , justify = None , max_rows = None ,
2040
+ max_cols = None , show_dimensions = False , line_width = None ):
2042
2041
"""
2043
2042
Render a DataFrame to a console-friendly tabular output.
2044
2043
@@ -2085,9 +2084,9 @@ def to_string(self, buf=None, columns=None, col_space=None, header=True,
2085
2084
returns = fmt .return_docstring )
2086
2085
def to_html (self , buf = None , columns = None , col_space = None , header = True ,
2087
2086
index = True , na_rep = 'NaN' , formatters = None , float_format = None ,
2088
- sparsify = None , index_names = True , justify = None , bold_rows = True ,
2089
- classes = None , escape = True , max_rows = None , max_cols = None ,
2090
- show_dimensions = False , notebook = False , decimal = '.' ,
2087
+ sparsify = None , index_names = True , justify = None , max_rows = None ,
2088
+ max_cols = None , show_dimensions = False , bold_rows = True ,
2089
+ classes = None , escape = True , notebook = False , decimal = '.' ,
2091
2090
border = None , table_id = None ):
2092
2091
"""
2093
2092
Render a DataFrame as an HTML table.
0 commit comments