Updated tests
Value: [1e-4 to 8e-3]
This commit is contained in:
		
							parent
							
								
									aabb53957e
								
							
						
					
					
						commit
						a5c4cba2f0
					
				|  | @ -58,14 +58,15 @@ describe("Distribution", () => { | ||||||
|   ); |   ); | ||||||
| 
 | 
 | ||||||
|   test("mean", () => { |   test("mean", () => { | ||||||
|     expect(dist.mean().value).toBeCloseTo(8.704375514292865); |     expect(dist.mean().value).toBeCloseTo(9.5555555); | ||||||
|   }); |   }); | ||||||
|   test("pdf", () => { |   test("pdf", () => { | ||||||
|     expect(dist.pdf(5.0).value).toBeCloseTo(0.052007455285386944, 1); |     expect(dist.pdf(5.0).value).toBeCloseTo(0.10499097598222966, 1); | ||||||
|   }); |   }); | ||||||
|   test("cdf", () => { |   test("cdf", () => { | ||||||
|     expect(dist.cdf(5.0).value).toBeCloseTo( |     expect(dist.cdf(5.0).value).toBeCloseTo( | ||||||
|       dist1Samples.filter((x) => x <= 5).length / dist1SampleCount |       dist1Samples.filter((x) => x <= 5).length / dist1SampleCount, | ||||||
|  |       1 | ||||||
|     ); |     ); | ||||||
|   }); |   }); | ||||||
|   test("inv", () => { |   test("inv", () => { | ||||||
|  | @ -91,6 +92,6 @@ describe("Distribution", () => { | ||||||
|       resultMap(dist.pointwiseAdd(dist2), (r: Distribution) => |       resultMap(dist.pointwiseAdd(dist2), (r: Distribution) => | ||||||
|         r.toSparkline(20) |         r.toSparkline(20) | ||||||
|       ).value |       ).value | ||||||
|     ).toEqual(Ok("▁▂▅██▅▅▅▆▆▇▅▄▃▃▂▂▁▁▁")); |     ).toEqual(Ok("▁▂██▃▃▃▃▄▅▄▃▃▂▂▂▁▁▁▁")); | ||||||
|   }); |   }); | ||||||
| }); | }); | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user