F# 交互式笔记本不显示 Plotly 图表

F# interactive notebook not showing Plotly chart

我是 F# 交互式笔记本的新手,XPlot.Plotly。

我尝试了以下代码,希望能得到一个漂亮的正弦波

#r "nuget: XPlot.Plotly"
open XPlot.Plotly

let series = [for x in -5.0 .. 0.1 .. 5.0 -> sin x]

Chart.Line(series)

我得到的不是图表 Table showing Height, Id and Width

请指出我做错了什么

您需要添加交互式 nuget 包

#r "nuget: XPlot.Plotly"
#r "nuget: XPlot.Plotly.Interactive"