[Rprotobuf-commits] r922 - papers/jss

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon Dec 1 22:54:51 CET 2014


Author: murray
Date: 2014-12-01 22:54:51 +0100 (Mon, 01 Dec 2014)
New Revision: 922

Modified:
   papers/jss/article.Rnw
Log:
Make the dotted y=x line in figure 2 dashed with a bigger width to
make it more visible.  Suggested by Steve Scott.  Also add some
commented out code to add line numbers to make review copies for folks
that have offered to do a final review before our resubmit.



Modified: papers/jss/article.Rnw
===================================================================
--- papers/jss/article.Rnw	2014-12-01 07:58:25 UTC (rev 921)
+++ papers/jss/article.Rnw	2014-12-01 21:54:51 UTC (rev 922)
@@ -3,6 +3,10 @@
 \usepackage{listings}
 \usepackage[toc,page]{appendix}
 
+% Line numbers for drafts.
+%\usepackage[switch, modulo]{lineno}
+%\linenumbers
+
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 % Spelling Standardization:
 % Protocol Buffers, not protocol buffers
@@ -1010,7 +1014,7 @@
 plot(clean.df$savings.serialized, clean.df$savings.rprotobuf, pch=1, col="red", las=1, xlab="Serialization Space Savings", ylab="Protocol Buffer Space Savings")
 points(clean.df$savings.serialized.gz, clean.df$savings.rprotobuf.gz,pch=2, col="blue")
 # grey dotted diagonal
-abline(a=0,b=1, col="grey",lty=3)
+abline(a=0,b=1, col="grey",lty=2,lwd=3)
 
 # find point furthest off the X axis.
 clean.df$savings.diff <- clean.df$savings.serialized - clean.df$savings.rprotobuf
@@ -1056,7 +1060,7 @@
 \hline
 \end{tabular}
 \end{center}
-\caption{(Top) Relative space savings of Protocol Buffers and native \proglang{R} serialization over the raw object sizes of each of the \Sexpr{n} data sets in the \pkg{datasets} package. Points to the left of the dotted $y=x$ line represent datasets that are more efficiently encoded with Protocol Buffers. (Bottom) Absolute space savings of two outlier datasets and the aggregate performance of all datasets.}
+\caption{(Top) Relative space savings of Protocol Buffers and native \proglang{R} serialization over the raw object sizes of each of the \Sexpr{n} data sets in the \pkg{datasets} package. Points to the left of the dashed $y=x$ line represent datasets that are more efficiently encoded with Protocol Buffers. (Bottom) Absolute space savings of two outlier datasets and the aggregate performance of all datasets.}
 \label{fig:compression}
 \end{figure}
 



More information about the Rprotobuf-commits mailing list