ARM-software / trappy

This repository has moved to https://gitlab.arm.com/tooling/trappy
Apache License 2.0
60 stars 39 forks source link

ILinePlot: only pass the necessary data when xlim is passed #206

Closed JaviMerino closed 8 years ago

JaviMerino commented 8 years ago

xlim limits the x axis to a given range, but for ILinePlot we pass all the data to dygraph and then let dygraph apply the window. That means that we include a lot of useless data in the notebook and we lose performance parsing data that will never be plotted.

Improve xlim for ILinePlot so that it only embeds the data relevant for the plot.

sinkap commented 8 years ago

Thanks for adding this!