I have an excel file which has 79 rows and 12 columns.
The problem I have is that when I run the following code, I only get 8 rows and 1 column.
Row 9, is an empty row, and I think this is the problem. But I don't know how to get by this problem. I have tried using missing
, ismissing
, allowmissing
and dropmissing
in different ways. But nothing I've tried has worked for me.
using DataFrames, XLSX
df = DataFrame(XLSX.readtable("file.xlsx")...)
println(df)
Is the empty row a problem, and how can I handle that empty row? Or is there something else that might cause the problem that I only get 8 rows and 1 column?