How do I load an excel file into pandas datatframe using pd.read_excel
without loading rows that have na in them?
Or do I have to first load the whole file and then remove them from the dataframe using dropna?
I'm asking specifically for read_excel. I saw the answer for read_csv and pointed to it.