有人知道导出类型的好方法:
(::Array{Expr,1}
到.csv吗?
以下是我在exp_out
中使用的表达式的一个示例:
Expr[3]
[Decycler(es_close; n=224), 263, 262, 0.04, 62, 147, 104, 201, -3.5, 6.0, 4, 6, "Next_bar_open", "This_bar_on_close", 4.5, 1, 10, "short", 11, 14.0]
[HurstCoefficient(es_close; n=152, LPPeriod=131), 291, 130, 0.68, 6, 261, 243, 183, -2.0, 4.0, 6, 5, "Next_bar_open", "Next_bar_open", 3.0, 1, 1, "long", 23, 12.5]
[broadcast(/, ModifiedStochastic(es_close; n=293, HPPeriod=95, LPPeriod=139), RoofingFilterIndicator(es_close; LPPeriod=224, HPPeriod=57)), 222, 134, 0.42, 267, 156, 43, 112, -4.5, 1.0, 3, 2, "Next_bar_open", "This_bar_on_close", 17.5, 8, 1, "long", 26, 4.5]
我的目标是将expresison导出到.csv文件,以便将上面的完整表达式包含到导出的一列中。
using CSV
CSV.write("C:/Users/yoohoo/expr.csv", exp_out;delim=',')
它将输出上的多列扩展为delim=','
,有什么想法可以有效地将其干净地导出到1x列吗?
输出:
您看到delim=','
分开了,所以我的Expr侵占了其他列。
期望的输出将不会在delim=','
上拆分它,并且在第一个ID列中具有完整的Expr。