Hi guys,
I am wondering is there a way like pickle
in python to save the output data from Julia calculations? maybe it can support arrays, dict, tuples? for example, if I have a dict of which each key stores a different dataframe (columns rows are different), then how can I save it? and then how to load it? (if the method is compatible with python, then it would be much more better!)
Here is my example
julia> sensitivity_results
Dict{Any, Any} with 230 entries:
"pWaterRootHalfLoss_transpiration" => 1Γ4 DataFrameβ¦
"ΞΊ_total_plant_water_content" => 1Γ4 DataFrameβ¦
....
julia> sensitivity_results["pWaterRootHalfLoss_transpiration"]
1Γ4 DataFrame
Row β sensitivity_mean sensitivity_std sensitivity_daily sensitivity_seasonal
β Float64 Float64 Float64 Float64
ββββββΌββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
1 β 0.000450049 0.000635199 0.000538933 0.000614739
julia> sensitivity_results["ΞΊ_total_plant_water_content"]
1Γ4 DataFrame
Row β sensitivity_mean sensitivity_std sensitivity_daily sensitivity_seasonal
β Float64 Float64 Float64 Float64
ββββββΌββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
1 β -0.131991 -0.148735 -0.146674 -0.148216
Thanks!