我正在尝试使用 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 中的图形输出?我显然缺少一些基本的东西,但是什么?