1

我正在尝试使用 Visual Studio Code 或 Atom 中的 F# 脚本来可视化一些数据(两者都尝试过)。有一些简单的例子展示了它是如何使用 XPlot Google Charts 工作的:

https://tahahachana.github.io/XPlot/ http://tomasp.net/blog/2016/fslab-ionide/

但我没有得到任何图表输出。如果我执行这样的代码:

inputs
|> Chart.Combo
|> Chart.WithOptions 
     (Options(title = "Coffee Production", series = 
        [| for typ in series -> Series(typ) |]))
|> Chart.WithLabels 
     ["Bolivia"; "Ecuador"; "Madagascar"]
|> Chart.WithLegend true
|> Chart.WithSize (600, 250)

我只在 FSI 窗口中得到输出:

验证它:GoogleChart = XPlot.GoogleCharts.GoogleChart {高度 = 250; id = "85c0bc41-3ae2-4a40-8517-da33aa7ad713"; 宽度 = 600;}

...这当然是正确的,文本窗口中还可能显示什么?但是如何使用 F# 交互获得 VS Code 或 Atom 中的图形输出?我显然缺少一些基本的东西,但是什么?

4

1 回答 1

1

这个问题是在搜索 Visual Studio Code Insiders 和 .NET Interactive 时出现的。看起来这是现在让 XPlot 内联的方法:

#i "nuget:https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json"
#r "nuget:xplot.plotly.interactive"
于 2021-03-29T02:55:01.667 回答