distribution

  • histogram
      fsharp

ranking

  • bars
      csharp

correlation

  • scatter
      fsharp csharp
Home About
In [ ]:
#r "nuget: Plotly.NET.CSharp"
#r "nuget: Plotly.NET.Interactive"
Installed Packages
  • Plotly.NET.CSharp, 0.8.0
  • Plotly.NET.Interactive, 3.0.2

Loading extensions from Plotly.NET.Interactive.dll

In [ ]:
using Plotly.NET.CSharp;
using static Plotly.NET.StyleParam;

Chart.Scatter<int, int, string>(
    mode: Mode.Markers,
    x: new int [] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10},
    y: new int [] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
)