Passing a seq from F# to RProvider

后端 未结 2 1484
一整个雨季
一整个雨季 2021-01-24 10:24

I want to be able to pass a sequence of option float to the RProvider in F#. If I have a sequence of floats with Some float and Non

2条回答
  •  Happy的楠姐
    2021-01-24 10:58

    You can do it with Deedle and nullable values:

    let toNullable =
           function
           | None -> Nullable()
           | Some x -> Nullable(x)
    
    let optData4 = 
        seq [Some 10.0; Some 9.0; Some 8.0; None; Some 6.0; 
            Some 5.0; Some 5.0; None; Some 4.0; Some 2.0; 
            None] 
        |> Seq.map(toNullable)
    
    let series = Series.ofNullables(optData4)
    
    let testData4 = 
        namedParams [
            "regPrice", series;]
        |> R.data_frame
    

提交回复
热议问题