History log of /external/trappy/tests/trappy/plotter/js/ILinePlot.js
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
e81fdcb135d0325e3bc22fae0583555d20aae280 04-Jan-2017 Brendan Jackman <brendan.jackman@arm.com> Update ARM Ltd. copyright to 2017
/external/trappy/trappy/plotter/js/ILinePlot.js
e2ede1f52665ff9ca6ed5177528b2f150ef16a35 02-Nov-2016 Brendan Jackman <brendan.jackman@arm.com> ILinePlot: Add fill_alpha parameter
/external/trappy/trappy/plotter/js/ILinePlot.js
5c53c1f76cb60be8cf1d6c43b54a3f04eae10d6c 07-Jul-2016 Kapileshwar Singh <kpsingh@google.com> ILinePlot: Performance Improvements for ILinePLot

Instead of converting the DataFrame to JSON and converting to
the dyrgaph format in JS. Send the prepared data as expected by dygraphs
to the JavaScript Library and get rid of convertToDataTable function.

With the current change the following plot works reasonably well on my
laptop (Core i7 2.2GHz, 16GB RAM)

```
columns = ["tick", "tock", "toe"]
df = pd.DataFrame(numpy.random.randn(300000, 3),
columns=columns).cumsum()

trappy.ILinePlot(df, column=columns).view(max_datapoints=2000001)
```

Do not convert DataFrame to dict in fix_indexes
/external/trappy/trappy/plotter/js/ILinePlot.js
f4261b4fbb05ab7e27d89fa2f607773cdf4355b2 17-Jun-2016 Javi Merino <javi.merino@arm.com> ILinePlot: learn to specify custom colors

The static plotter accepts a colors parameter to change the colors of
the lines. Let the ILinePlot accept the same argument with the same
syntax so that we can customize the colors of the plots in the same way
for all plots created by trappy.plotter.
/external/trappy/trappy/plotter/js/ILinePlot.js
535b3bd3ff699415798dbf1e9cf9e3bc3f56c3b2 27-Apr-2016 Javi Merino <javi.merino@arm.com> ILinePlot: embed the data in the notebook

Similar to 0cd75b7c9292 ("plotter: EventPlot: Add support for embedded
data"), let ILinePlot put the data for the graph in the notebook instead
of in a file.
/external/trappy/trappy/plotter/js/ILinePlot.js
094df31b5d420dfbd705cdfaa51f580522b0ad80 22-Mar-2016 Michele Di Giorgio <michele.digiorgio@arm.com> plotter: ILinePlot: decrease figure width by 3 instead of 2

Apparently in some cases decreasing the figure width by 2 pixels is not
enough. Hence, we subtract one more.
/external/trappy/trappy/plotter/js/ILinePlot.js
818223abebd89aa981763207b211c7bd95f2ff78 08-Mar-2016 Michele Di Giorgio <michele.digiorgio@arm.com> plotter: ILinePlot: remove undesired horizontal scollbar below plot

When plotting with interactive plotter an unnecessary horizontal scrollbar
appears below the chart. It doesn't actually scroll anything. In fact, it is
enough to remove 2 pixels from the figure to get rid of it.

close #152
/external/trappy/trappy/plotter/js/ILinePlot.js
9b4898aa3ea40f2af85157af65ab491e8aaa9b4c 19-Feb-2016 Michele Di Giorgio <michele.digiorgio@arm.com> plotter: always show lower centered legend

For both static and interactive plot show the legend below the plots and
centered with respect to the area occupied by the figures.

Static plots will show three labels per line in the legend by default.
This default value can be changed by setting the legend_ncol parameter
to the desired value. Notice also that the legend is shown in any case even
for a single trace. Since the trace name will now always appear in the legend,
in the next commits it will be removed from the title.

Interactive plots will show the legend with a single label per line, as there
is no option in javascript to tell the maximum number of labels that can be
printed in one line.
/external/trappy/trappy/plotter/js/ILinePlot.js
4ec4aee55dbd4045cfb6a2fe099615a569ce7ff7 05-Jan-2016 Javi Merino <javi.merino@arm.com> trappy: update copyright to 2016
/external/trappy/trappy/plotter/js/ILinePlot.js
b9e8f11cfd24c71e4634a3b23ba3704841e636d9 21-Dec-2015 Kapileshwar Singh <kapileshwar.singh@arm.com> plotter: ILinePlot: Responsive Design for ILinePlot

Signed-off-by: Kapileshwar Singh <kapileshwar.singh@arm.com>
/external/trappy/trappy/plotter/js/ILinePlot.js
c972b86eac3c41c14b4063f0a4c79b371ebe739c 02-Nov-2015 Kapileshwar Singh <kapileshwar.singh@arm.com> plotter: ILinePlot: Allow xlim in ILinePlot

This solves enhancement #53

Signed-off-by: Kapileshwar Singh <kapileshwar.singh@arm.com>
/external/trappy/trappy/plotter/js/ILinePlot.js
7ab82627f892036d7eeb04af3d282a329f8d04cd 11-Sep-2015 Kapileshwar Singh <kapileshwar.singh@arm.com> plotter: ILinePlot: Add Support for scatter plots

scatter=True enables a scatter plot (data points) without the
line. The size of the point can be adjusted with the point_size
parameter

Signed-off-by: Kapileshwar Singh <kapileshwar.singh@arm.com>
/external/trappy/trappy/plotter/js/ILinePlot.js
53de9b352977814c37608788cc1df83fc6485371 25-Aug-2015 Kapileshwar Singh <kapileshwar.singh@arm.com> plotter: IPython v4 Compatibility

IPython 4.0 changes the location of the web server and the way
IPython 4.0 profiles are handled. This changes allows plotter
to be compatible with both IPython 4.0+ and the earlier versions

Signed-off-by: Kapileshwar Singh <kapileshwar.singh@arm.com>
/external/trappy/trappy/plotter/js/ILinePlot.js
435457c8af9d69383ba45e0bd7da022d967a8dea 10-Aug-2015 Javi Merino <javi.merino@arm.com> trappy: rename to trappy

Change-Id: I7e0e34c9f5565e34629683bb29ab25cf5e737088
/external/trappy/trappy/plotter/js/ILinePlot.js