Closed teubert closed 2 years ago
Merging #191 (6d4598b) into dev (f489a10) will increase coverage by
0.14%
. The diff coverage is100.00%
.
@@ Coverage Diff @@
## dev #191 +/- ##
==========================================
+ Coverage 90.53% 90.68% +0.14%
==========================================
Files 52 52
Lines 3266 3317 +51
==========================================
+ Hits 2957 3008 +51
Misses 309 309
Impacted Files | Coverage Δ | |
---|---|---|
src/prog_algs/predictors/monte_carlo.py | 94.25% <100.00%> (ø) |
|
src/prog_algs/predictors/unscented_transform.py | 96.06% <100.00%> (ø) |
|
src/prog_algs/state_estimators/kalman_filter.py | 95.16% <100.00%> (ø) |
|
src/prog_algs/state_estimators/particle_filter.py | 95.29% <100.00%> (ø) |
|
...g_algs/state_estimators/unscented_kalman_filter.py | 98.36% <100.00%> (ø) |
|
...og_algs/uncertain_data/multivariate_normal_dist.py | 96.42% <100.00%> (+0.20%) |
:arrow_up: |
src/prog_algs/uncertain_data/scalar_data.py | 96.55% <100.00%> (+0.18%) |
:arrow_up: |
src/prog_algs/uncertain_data/uncertain_data.py | 100.00% <100.00%> (ø) |
|
src/prog_algs/uncertain_data/unweighted_samples.py | 91.45% <100.00%> (+0.22%) |
:arrow_up: |
tests/test_state_estimators.py | 94.70% <100.00%> (+0.75%) |
:arrow_up: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update f489a10...6d4598b. Read the comment docs.
Add _type parameter to uncertain data.
Now state estimators will return uncertaindata that will return containers on call to .mean or .median
Should fix issue with LinearModels and State Estimators.