You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The output of XLSX.readtable() is no longer a tuple but a class. According to XLSX.jl docs ([https://felipenoris.github.io/XLSX.jl/stable/api/#XLSX.readtable]) one should use this function to create DataFrame with DataFrame.jl, which makes much more sense.
For example:
G = DataFrame(XLSX.readtable("data/zillow_data_download_april2020.xlsx","Sale_counts_city"))
Error while executing G[1]
MethodError: no method matching getindex(::XLSX.DataTable, ::Int64)
Stacktrace:
[1] top-level scope
@ In[42]:1
or accesing G in with all instructions
Help needed !!!
Thank you !!!
The text was updated successfully, but these errors were encountered: