distribution

  • histogram
      fsharp

ranking

  • bars
      csharp

correlation

  • scatter
      fsharp csharp
Home About

Scatter Plots in F# using Plotly.NET¶

INTRO AN CHART DESCRIPTION HERE

As always, we first have to reference the graphing library:

In [ ]:
#r "nuget: Plotly.NET.Interactive"
Installed Packages
  • Plotly.NET.Interactive, 3.0.2

Loading extensions from Plotly.NET.Interactive.dll

In [ ]:
open Plotly.NET

Chart.Histogram(
    [1 .. 10]
)