Manipulating data frame with Deedle in FSharp - Part 2
Manipulating data frame with Deedle in FSharp - Part 2 Today, I would like to show more functionalities of Deedle and how they can be used in a real life scenario. If you never heard of Deedle before, you can find A primer on Deedle (Part 1) here . In real life, data rarely (if not never) come in a format exploitable for analysis therefore, a first step of manipulation of data is always needed before analysis. This step involves taking data from CSVs or databases, renaming, categorizing, reordering, transposing or pivoting tables and data. Without any tools or libraries, it would be a pain to do these common operations. Deedle is a library which simplifies data exploration by providing functions to execute common manipulation on dataframes and timeseries. http://bluemountaincapital.github.io/Deedle/ Even though I went through some of the feature in Part 1 , I would like to share more features with you which are extremely useful when manipulating dataframes. This post is compo...