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
- 我已经尝试过 VS Code 1.54.0-insider 和 1.53.2
结果
- 我尝试了几个不同版本的 .NET Interactive
结果相同的笔记本
- 我试过几个版本的.Net 5
SDK
- 我试过几个版本XPlot.Plotly
请指出我做错了什么
您需要添加交互式 nuget 包
#r "nuget: XPlot.Plotly"
#r "nuget: XPlot.Plotly.Interactive"
我是 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
- 我已经尝试过 VS Code 1.54.0-insider 和 1.53.2 结果
- 我尝试了几个不同版本的 .NET Interactive 结果相同的笔记本
- 我试过几个版本的.Net 5 SDK
- 我试过几个版本XPlot.Plotly
请指出我做错了什么
您需要添加交互式 nuget 包
#r "nuget: XPlot.Plotly"
#r "nuget: XPlot.Plotly.Interactive"