How to get the position of the row with some key from a Deedle Frame<DateTime,_>?
问题 By position I mean: let position:int = positionForKey frame key let row = Frame.take positionForKey |> frame.takeLast 1 Then, row should be a Frame with only one row, whose key is key . What I don't know is how to achieve positionForKey . One idea that should work but I don't know if it's the best way of doing it would be to create another Series via Series.scanValues and let the values be the positions, but I think there oughts to be a more elegant way of doing it. The implementation via