-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathFSharp.Stats.Tests.fsproj
More file actions
82 lines (82 loc) · 5.32 KB
/
FSharp.Stats.Tests.fsproj
File metadata and controls
82 lines (82 loc) · 5.32 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="TestExtensions.fs" />
<Compile Include="Array.fs" />
<Compile Include="SpecialFunctions.fs" />
<Compile Include="ConfidenceInterval.fs" />
<Compile Include="Correlation.fs" />
<Compile Include="Covariance.fs" />
<Compile Include="Clusternumber.fs" />
<Compile Include="DistanceMetrics.fs" />
<Compile Include="Distributions.fs" />
<Compile Include="DistributionsEmpirical.fs" />
<Compile Include="DistributionsContinuous.fs" />
<Compile Include="DistributionsDiscrete.fs" />
<Compile Include="Fitting.fs" />
<Compile Include="Seq.fs" />
<Compile Include="Quantile.fs" />
<Compile Include="Integration.fs" />
<Compile Include="Interpolation.fs" />
<Compile Include="Interval.fs" />
<Compile Include="JaggedCollection.fs" />
<Compile Include="List.fs" />
<Compile Include="Rank.fs" />
<Compile Include="Testing.fs" />
<Compile Include="Optimization.fs" />
<Compile Include="SummaryStats.fs" />
<Compile Include="Imputation.fs" />
<Compile Include="Main.fs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="data/glm_test_lungcap.csv" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/glm_test_energy.csv" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/glm_test_cheese.csv" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/TestDataSAM.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/testDatahClust.csv" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/benjaminiHochberg_Input_nan.csv" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/benjaminiHochberg_AdjustedWithR_nan.csv" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/qvaluesWithR_nan.csv" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/qvaluesRobustWithR_nan.csv" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixFormat1NoInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixFormat2NoInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixFormat3NoInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixFormat4NoInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixFormat1WithInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixFormat2WithInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixFormat3WithInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixFormat4WithInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixIntFormat1NoInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixIntFormat2NoInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixIntFormat3NoInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixIntFormat4NoInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixIntFormat1WithInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixIntFormat2WithInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixIntFormat3WithInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixIntFormat4WithInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixSpecialNoInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/DenseMatrixSpecialWithInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/SparseMatrixFormat1NoInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/SparseMatrixFormat1WithInfo.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/TableFormat.txt" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/fwer_hochberg_results.csv" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/fwer_holm_results.csv" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="data/holmHochberg_Input_nan.csv" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<PackageReference Include="altcover" Version="8.6.68" />
<PackageReference Include="Expecto" Version="10.*" />
<PackageReference Include="YoloDev.Expecto.TestSdk" Version="0.14.*" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
<PackageReference Include="OptimizedPriorityQueue" Version="5.1.0" />
<PackageReference Include="Deedle" Version="3.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FSharp.Stats\FSharp.Stats.fsproj" />
</ItemGroup>
</Project>