Table of contents
This is placeholder text with a link.
This is bold placeholder text.
This is italic placeholder text.
This is bold and italic placeholder text.
I identified the following sub problems:
Lets get started writing some code:
#r "nuget: Plotly.NET, 2.0.0-preview.16"
open Plotly.NET
/// some example data. see how this text is active when hovering over data in the post?
let data = [
0., 1.
1., 3.
2., 6.9
3., 1.337
]
Here is some rad visualization:
let myChart =
Chart.Spline(data)
|> Chart.withTitle "My first chart!"