Steven Hiscocks
Steven Hiscocks
@DaveKirkland You can remove the merge commit with `git reset --hard HEAD^` then rebase.
An additional plotter has been added in #699 which includes a different symbol for prediction/update. This should also be added to `matplotlib` plotter as well (which I'll take a look...
Looking at the KMKL generated from the test, this doesn't seem to be valid. I think it's due to the coordinates not being quite right (contains `[` and `]`).
> Some notable points for discussion: > > * Currently, the model expects a `Track` instead of a `State` object as an input to the `function()` method, while the same...
This is a common issue with _matplotlib_, often cutting off annotations and tables, etc. Addding `bbox_inches='tight'` to the `savefig` arguments should resolve it. As this is image generated in _matplotlib_...
Interesting. Does this work? ```python table = SIAPTableGenerator(...).compute_metric() table.figure.savefig('test.png', bbox_inches='tight') ```
I've just opened a PR that will hopefully scale the figure size better. I'm not sure why the text is missing in your plot?
What version of _matplotlib_ are you using?
Could you look at using [this pytest import skip feature](https://docs.pytest.org/en/latest/skipping.html#skipping-on-a-missing-import-dependency) for the the Matlab test script.
Related to #364