Skip to content

Latest commit

 

History

History
2 lines (2 loc) · 191 Bytes

python-tips.md

File metadata and controls

2 lines (2 loc) · 191 Bytes

Read data and remove first 11 rows and first 16 columns, with pandas

my_data = pd.read_excel(my_file, sheet_name="raw_data", header=None, skiprows=11, usecols=lambda x: x not in range(16))