You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by al...@apache.org on 2020/01/28 01:01:08 UTC

[incubator-datasketches-characterization] branch more_results updated: updated script

This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch more_results
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-characterization.git


The following commit(s) were added to refs/heads/more_results by this push:
     new c1c351e  updated script
c1c351e is described below

commit c1c351e7b429cd52482a48149b6d740985eba406
Author: AlexanderSaydakov <Al...@users.noreply.github.com>
AuthorDate: Mon Jan 27 17:01:00 2020 -0800

    updated script
---
 cpp/matlab/kll_sketch_error.m | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/cpp/matlab/kll_sketch_error.m b/cpp/matlab/kll_sketch_error.m
index 4e5e084..9dc6bf8 100644
--- a/cpp/matlab/kll_sketch_error.m
+++ b/cpp/matlab/kll_sketch_error.m
@@ -3,14 +3,12 @@ clf;
 kll_java=load('../../results/kll_sketch_accuracy_k200_1k_99pct.tsv');
 kll_cpp=load('../results/kll_sketch_accuracy_k200_1k_99pct.tsv');
 
-#semilogx([kll1(:,1), kll2(:,1), kll3(:,1)], [kll1(:,2), kll2(:,2), kll3(:,2)], 'linewidth', 2);
-
 semilogx(kll_java(:,1), kll_java(:,2), 'linewidth', 2);
 hold on;
 semilogx(kll_cpp(:,1), kll_cpp(:,2), 'linewidth', 2);
 
 set(gca, 'fontsize', 16);
-title 'Rank Error of KLL Sketch K=200 (99pct)'
+title 'Rank Error of KLL Sketch K=200 (1000 trials 99pct)'
 xlabel 'stream size'
 legend('Java', 'C++');
 ylabel 'single-sided normalized rank error, %'


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org