#r "nuget:SandDance.InteractiveExtension,*-*"
#r "nuget:DataView.InteractiveExtension,*-*"
#r "nuget:Microsoft.ML.DataView"
#r "nuget: Microsoft.Data.Analysis"
using System.IO;
using System.Net.Http;
var contents = await new HttpClient()
.GetStringAsync("https://raw.githubusercontent.com/ageron/handson-ml2/master/datasets/housing/housing.csv");
using Microsoft.Data.Analysis;
using Microsoft.ML;
using System.Collections.Generic;
var housingData = DataFrame.LoadCsvFromString(contents);
housingData.ToTabularDataResource().ExploreWithSandDance().Display();