A primer on manipulating data frame with Deedle in F#
A primer on manipulating data frame with Deedle in F# The first time I encountered Deedle was from @brandewinder book Machine learning projects for .NET developers . Deedle is a library which facilitates the manipulation of data frames and data series. http://bluemountaincapital.github.io/Deedle/ A data frame is like a table with rows and columns where columns don’t need need to be of same type. A data series is like a vector (an array of values) where each value is itself a key value pair. A very famous data series is a time series which is a vector of value with a key representing an instant in time and a value associated with it (it isn’t limited to this single property). Although Deedle website contains very good tutorials, like the Deedle in 10 minutes tutorial, I still found it a bit hard to grasp. So why would you need Deedle? One of the reason why I think Deedle is interesting is that it makes the manipulation of data frame much more pleasant. With Deedle,it is possible...