How am I supposed to remove the index column in the first row. I know it is not counted as a column but when I transpose the data frame, it does not allow me to use my headers anymore.
In[297] df = df.transpose()
        print(df)
        df = df.drop('RTM',1)
        df = df.drop('Requirements', 1)
        df = df.drop('Test Summary Report', 1)
        print(df)
This throws me an error "labels ['RTM'] not contained in axis".
RTM is contained in an axis and this works if I do index_col=0
df = xl.parse(sheet_name,header=1, index_col=0, usecols="A:E", nrows=6, index_col=None) 
but then I lose my (0,0) value "Artifact name" as a header. Any help will be appreciated.

