commit 837ce3a5a5f0336ea051aebc697f324c75f580f5 Author: Karsten Loesing karsten.loesing@gmx.net Date: Mon Nov 26 20:45:20 2012 -0500
Typos (#1854). --- task-1854/plot-entropy.R | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/task-1854/plot-entropy.R b/task-1854/plot-entropy.R index d62657e..5d30583 100644 --- a/task-1854/plot-entropy.R +++ b/task-1854/plot-entropy.R @@ -11,14 +11,14 @@ c <- data.frame(x = p$advbw, y = p$cumprob, ggplot(c, aes(x = x, y = y, colour = colour)) + geom_line() + scale_x_log10(name = "\nAdvertised bandwidth in B/s (log scale)") + -scale_y_continuous(name = "Cumulated probability\n") + +scale_y_continuous(name = "Cumulative probability\n") + scale_colour_hue(name = "Adv. bw. cutoff in B/s") + opts(legend.position = "top")
ggplot(c, aes(x = x, y = y, colour = colour)) + geom_line() + scale_x_log10(name = "\nAdvertised bandwidth in B/s (log scale)") + -scale_y_log10(name = "Cumulated probability (log scale)\n") + +scale_y_log10(name = "Cumulative probability (log scale)\n") + scale_colour_hue(name = "Adv. bw. cutoff in B/s") + opts(legend.position = "top")
tor-commits@lists.torproject.org