Context
If I enter the following:
#r "nuget:Deedle"
#r "nuget:FSharp.Charting"
open System
open Deedle
open FSharp.Charting
let dates = [
DateTime(2013, 1, 1);
DateTime(2013, 1, 4);
DateTime(2013, 1, 8); ]
let values = [ 10.0; 20.0; 30.0 ]
let first = Series(dates, values)
which are the first few steps from the following:
https://fslab.org/Deedle/tutorial.html
into an F# dotnet interactive notebook, first
doesn't appear to render anything:
Question
What's a good way to get Deedle values to render nicely in dotnet interactive?