I am a newbie to C#/F#. There are very limited online resources demonstrating Deedle in C#, but I do need to use C# to conduct data analysis.
The sample data is Titanic.csv, from here: https://forge.scilab.org/index.php/p/rdataset/source/tree/master/csv/datasets/Titanic.csv
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data;
using Deedle;
namespace DepositDataCleaning
{
class Program
{
static void Main(string[] args)
{
var titanic = Frame.ReadCsv(@"Titanic.csv");
DataTable dt = titanic.ToDataTable(new string[1]{"Index"});
# This works, to convert a deedle frame to .NET DataTable Format
var new_deedleframe = Frame.FromRecords(dt); # it doesn't work.
}
}
}