I have polar dataframe
df = pl.read_excel('file.xlsx', sheet_name = 'sheet')
first_column_name = df.columns[0]
first_column = df[first_column_name].to_list()
When I do this, It is ignoring empty cells of column.
Also While doing len(df) It is also ignoring empty rows.
Can we fix this.