-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSetup.fsx
36 lines (33 loc) · 1.1 KB
/
Setup.fsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#r "PresentationCore"
#r "PresentationFramework"
#r "System"
#r "System.Core"
#r "System.Drawing"
#r "System.Numerics"
#r "System.Windows.Forms"
#r "System.Windows.Forms.DataVisualization"
#r "System.Xaml"
#r "System.Xml"
#r "UIAutomationTypes"
#r "WindowsBase"
#r "WindowsFormsIntegration"
#r "packages/MathNet.Numerics.3.0.0-beta01/lib/net40/MathNet.Numerics.dll"
#r "packages/MathNet.Numerics.FSharp.3.0.0-beta01/lib/net40/MathNet.Numerics.FSharp.dll"
#r "packages/FSharp.Data.2.0.5/lib/net40/FSharp.Data.dll"
#r "packages/FSharp.Charting.0.90.6/lib/net40/FSharp.Charting.dll"
#r "libs/DynamicDataDisplay.dll"
#r "libs/Plot3D.dll"
#r "libs/WPFChart.dll"
#load "ChartWindow.fs"
#load "SurfacePlotWindow.fs"
#load "Charting.fs"
#load "Iteration.fs"
#load "MathNetExtensions.fs"
#load "LinearRegressionWithOneVariable.fs"
//#load "LinearRegression.fs"
#load "LogisticRegression.fs"
//#load "LinearRegressionWithRegularization.fs"
#load "LogisticRegressionWithRegularization.fs"
open FSharp.Charting
module FsiAutoShow =
fsi.AddPrinter(fun (ch:FSharp.Charting.ChartTypes.GenericChart) -> ch.ShowChart(); "(Chart)")