F#deedle transform Series <string,obj =“”> to Series <string,float =“”>?

时间:2016-03-06 11:24:36

标签: f# deedle

如果我使用row操作获得Frame .Rows.[rowIndex]Deedle将返回Object Series。有时我知道这只包含float。如何在拍摄中将所有obj转换为float系列?

1 个答案:

答案 0 :(得分:2)

在Deedle系列中是通用的,所以理想情况下应该可以立即获得浮动系列。但是,由于您获得一系列对象的原因尚不清楚,您仍然可以通过映射适当的类型转换函数将值转换为浮点数:

#load @"..\packages\Deedle.1.2.4\Deedle.fsx"

open Deedle
open System

// Let's prepare a sample series
let keys   = ["1";"2";"3"]
let values = [1.1 :> Object;1.2 :> Object;1.3 :> Object]
let series = Series(keys, values)

// Now apply the map taking the Series<string,System.Object> series to Series<string,float>
series |> Series.map (fun _ v -> v :?> float)

// as @Foggy Finder pointed out, there is a convenience function to only map values
series |> Series.mapValues (fun v -> v :?> float)

// Alternatively, use the tryMap function that takes the Series<int,Object> series
// to Series<int,TryValue<float>>
series |> Series.tryMap (fun _ v -> v :?> float)

Series.map函数的类型为(('a -> 'b -> 'c) -> Series<'a,'b> -> Series<'a,'c>) when 'a : equality。这意味着映射函数的第一个参数是我们使用下划线忽略的键,因为不需要进行类型转换。正如Foggy Finder指出的那样,有一个方便功能Series.mapValues可以隐藏密钥。