Closed jerlich closed 9 months ago
According to the readme, JDF supports vectors of floats. but if i try to have a Vector{Float64} as an element type, it fails.
MWE
using DataFrames, JDF df = (;a = range(1,10), b=[rand(2) for _ in 1:10]) JDF.save(tempdir() * "/test.jdf", df)
I think i misunderstood the features. Vector{Float64} is a supported type, not element type. It seems that having a Vector as an element isn't supported. right?
Vector{Float64}
According to the readme, JDF supports vectors of floats. but if i try to have a Vector{Float64} as an element type, it fails.
MWE