陣列我有兩個val
S:斯卡拉保存到格式
// 0~250::250~500::500~750::750~1000
val step_x_ranges = stepsAsString.mkString("::")
// 1::22::7::16
val step_y = histogram_final.map{case (x , y) => y}.mkString("::")
而且我想把它保存到Array
,如:
0~250::1
250~500::22
500~750::7
750::1000::16
但還是不嘗試一下: 請幫我這個是我的錯代碼:
結果:
0::4
~::8
你想壓縮這些'Seq's? https://www.safaribooksonline.com/library/view/scala-cookbook/9781449340292/ch10s24.html:'stepsAsString.zip(histogramFinal).map(...' –