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
I have data as a Matrix{Any} (Data of integers, floats and strings) and Vector{Any} (Actually strings). I can create a table from them by tTestData = Tables.table(mTestData; header = vTestHeader);.
Yet I can't create a data frame by dfTMP = DataFrame(mTestData, vTestHeader);.
I can by pass it by dfTMP = DataFrame(tTestData);.
I think if Tables.jl can generate a table from the data so should DataFrames.jl.
The text was updated successfully, but these errors were encountered:
I have data as a
Matrix{Any}
(Data of integers, floats and strings) andVector{Any}
(Actually strings). I can create a table from them bytTestData = Tables.table(mTestData; header = vTestHeader);
.Yet I can't create a data frame by
dfTMP = DataFrame(mTestData, vTestHeader);
.I can by pass it by
dfTMP = DataFrame(tTestData);
.I think if
Tables.jl
can generate a table from the data so shouldDataFrames.jl
.The text was updated successfully, but these errors were encountered: