forked from dotnet/machinelearning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTabularDataResourceExtensions.cs
60 lines (54 loc) · 2.35 KB
/
TabularDataResourceExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Data.Analysis;
namespace Microsoft.DotNet.Interactive.Formatting.TabularData
{
public static class TabularDataResourceExtensions
{
public static DataFrame ToDataFrame(this TabularDataResource tabularDataResource)
{
if (tabularDataResource == null)
{
throw new ArgumentNullException(nameof(tabularDataResource));
}
var dataFrame = new DataFrame();
foreach (var fieldDescriptor in tabularDataResource.Schema.Fields)
{
var fieldName = fieldDescriptor.Name;
var column = tabularDataResource.Data.Select(row =>
{
if (row is IDictionary<string, object> dictionary)
{
return dictionary[fieldName];
}
else
{
return row.FirstOrDefault(kvp => kvp.Key == fieldName).Value;
}
});
switch (fieldDescriptor.Type)
{
case TableSchemaFieldType.Number:
dataFrame.Columns.Add(new DoubleDataFrameColumn(fieldDescriptor.Name, column.Select(Convert.ToDouble)));
break;
case TableSchemaFieldType.Integer:
dataFrame.Columns.Add(new Int64DataFrameColumn(fieldDescriptor.Name, column.Select(Convert.ToInt64)));
break;
case TableSchemaFieldType.Boolean:
dataFrame.Columns.Add(new BooleanDataFrameColumn(fieldDescriptor.Name, column.Select(Convert.ToBoolean)));
break;
case TableSchemaFieldType.String:
dataFrame.Columns.Add(new StringDataFrameColumn(fieldDescriptor.Name, column.Select(Convert.ToString)));
break;
default:
throw new ArgumentOutOfRangeException();
}
}
return dataFrame;
}
}
}