The problem is as follows:
I have a dataframe with a column that has Vector{Float64} elements. When I store the dataframe in a CSV file and then retrieve it, the type of the column changed from Vector{Float64} to String. Which is really annoying since I need the values from within the Vector. A MWE is shown below:
using DataFrames, CSV
testDF = DataFrame([:columnA => Vector{Vector{Float64}}(undef,1)]) #Column type is Vector{Vector{Float64}}
testDF[1,:columnA] = [1.5,3.2,9.0]
CSV.write("C:\\Users\\Public\\testCSVfile",testDF)
testDF = DataFrame(CSV.File("C:\\Users\\Public\\testCSVfile")) #Column type is String?
That is the whole point. I want to store an array in the dataframe as an element. JDF seems like a solution, but would it be possible to retrieve the data in the Python programming language? The main reason I use a CSV format is because it is also usable to read the file in Python.