Hello everyone,
I am trying to read an xlsx file in julia :
Materials = XLSX.readtable("MatData.xlsx","Sheet1"; header = true)
In order to be able to make changes/calculations on it I want to convert it into a DataFrame:
materials = DataFrame(Materials)
I then get this error, does anyone know why?
ArgumentError: 'Tuple{Vector{Any}, Vector{Symbol}}' iterates 'Vector{Any}' values, which doesn't satisfy the Tables.jl `AbstractRow` interface
Thank you !