@@ -71,7 +71,7 @@ def get_writer(engine_name):
71
71
raise ValueError ("No Excel writer '%s'" % engine_name )
72
72
73
73
def read_excel (io , sheetname = 0 , header = 0 , skiprows = None , skip_footer = 0 ,
74
- index_col = None , parse_cols = None , parse_dates = False ,
74
+ index_col = None , names = None , parse_cols = None , parse_dates = False ,
75
75
date_parser = None , na_values = None , thousands = None ,
76
76
convert_float = True , has_index_names = None , converters = None ,
77
77
engine = None , ** kwds ):
@@ -116,6 +116,9 @@ def read_excel(io, sheetname=0, header=0, skiprows=None, skip_footer=0,
116
116
Column (0-indexed) to use as the row labels of the DataFrame.
117
117
Pass None if there is no such column. If a list is passed,
118
118
those columns will be combined into a ``MultiIndex``
119
+ names : array-like, default None
120
+ List of column names to use. If file contains no header row,
121
+ then you should explicitly pass header=None
119
122
converters : dict, default None
120
123
Dict of functions for converting values in certain columns. Keys can
121
124
either be integers or column labels, values are functions that take one
0 commit comments