dstl / Stone-Soup

A software project to provide the target tracking community with a framework for the development and testing of tracking algorithms.
https://stonesoup.rtfd.io
MIT License
406 stars 134 forks source link

ground_truth_plots range limits #783

Closed apiszcz closed 1 year ago

apiszcz commented 1 year ago

What is my problem indicating a plot range -0.0001, 0.0001, however the plot range appears to be -0.001, 0.001?

from stonesoup.plotter import Plotter
plotter = Plotter()
plotter.ax.set_ylim(-0.0001, 0.0001)
plotter.ax.set_xlim(0, 0.01)
plotter.plot_ground_truths(truths, [0, 2])

image

apiszcz commented 1 year ago

removed limits, plot is correct