Let’s say I have a dataframe that only holds number or missings. How can I convert it to a Array{T, 2} ? Without the names / header Thank you using DataFrames df = DataFrame(a=[ 1, 2, 3, 4, missing], b= [1, 2, 3, 4, 5]) df[:,:]
Reading time: 1 mins 🕑
Likes: 19 ❤