Hello
in the database I have this data:
16Γ3 Array{Any,2}:
"P1_BloEco_m" 1 0.01
"P1_BloEco_s" 2 0.06
"P1_R" 3 0.22
"P1_R" 4 0.242
"P2_R" 5 0.015
"P2_R" 6 0.06
"P3_A" 7 0.225
"P3_A" 8 0.245
"P4_B" 9 0.5
"P4_B" 10 0.52
"P5_C" 11 0.53
"P5_C" 12 0.54
"P6_H" 13 0.2
"P6_H" 14 0.21
"P7_T" 15 0.22
"P7_T" 16 0.23
Would it be possible to read this data in this format?
4Γ4 Array{Float64,2}:
0.01 0.015 0.5 0.2
0.06 0.06 0.52 0.21
0.22 0.225 0.53 0.22
0.242 0.245 0.54 0.23
Thanks!!