如何在 Fsharp 中打开和使用库:"Fsharp.Charting && Fsharp.Charts"?
How to open and use Library : "Fsharp.Charting && Fsharp.Charts" in Fsharp?
我尽力在 Google 中找到答案。但我认为这与我的情况不符。
请给我一个指导。非常感谢。
如果你是我,你可以卸载 + 安装 Visual Emprise。
这个原因让我想了很多次。
谢谢所有在我困难中帮助我的人。
右键单击 visual studio 参考部分中的 Fsharp.Charting 参考,然后发送至 Fsharp.Interactive
那么下面的代码就可以工作了
open FSharp.Charting
Chart.Line [ for x in 1.0 .. 100.0 -> (x, x ** 2.0) ]
|> Chart.Show
您可以在脚本中使用 #r
指令直接添加对 DLL 的引用。
#r "../packages/FSharp.Charting.0.91.1/lib/net45/FSharp.Charting.dll"
open FSharp.Charting
我尽力在 Google 中找到答案。但我认为这与我的情况不符。
请给我一个指导。非常感谢。
如果你是我,你可以卸载 + 安装 Visual Emprise。
这个原因让我想了很多次。
谢谢所有在我困难中帮助我的人。
右键单击 visual studio 参考部分中的 Fsharp.Charting 参考,然后发送至 Fsharp.Interactive
那么下面的代码就可以工作了
open FSharp.Charting
Chart.Line [ for x in 1.0 .. 100.0 -> (x, x ** 2.0) ]
|> Chart.Show
您可以在脚本中使用 #r
指令直接添加对 DLL 的引用。
#r "../packages/FSharp.Charting.0.91.1/lib/net45/FSharp.Charting.dll"
open FSharp.Charting