I want to have an overview of a Series in my dataframe, something like pandas' unique values counting. I don't know if there's a built-in function for that.
So far i've done a function to just get the numbers of different features. I could manage to do the job, my question is only about a built-in function.
let unique (s:Deedle.Series<'a,'a>) =
s.Values
|>Seq.distinct
|>Seq.length
I want a result like :
[("value1",5);("value2",8)]