Stephen J. Barr
2009-Jun-16 00:33 UTC
[R] xtable with longtable is doublespaced, rather than single as intended
Hello, Quick R/LaTeX question. I have the following code within a .Rnw file: <<label=regionalSummary,results=tex,echo=false>>cVec <- c("RATE","SVC.PCT","AGR.PCT","IND.PCT","density00") x.big <- xtable(aggregate(qp3[,cVec], list(qp3[,"COURT"]), mean)) colnames(x.big)[1] <- "COURT" print(x.big, tabular.environment="longtable", include.rownames=TRUE) @ However, in the PDF the table comes out double spaces, rather than single spaced like in the xtableGallery document. Is there any way to force single space behavior. I have nothing strange in my .Rnw file. Thanks, -stephen
Stephen J. Barr
2009-Jun-16 00:33 UTC
[R] xtable with longtable is doublespaced, rather than single as intended
Hello, Quick R/LaTeX question. I have the following code within a .Rnw file: <<label=regionalSummary,results=tex,echo=false>>cVec <- c("RATE","SVC.PCT","AGR.PCT","IND.PCT","density00") x.big <- xtable(aggregate(qp3[,cVec], list(qp3[,"COURT"]), mean)) colnames(x.big)[1] <- "COURT" print(x.big, tabular.environment="longtable", include.rownames=TRUE) @ However, in the PDF the table comes out double spaces, rather than single spaced like in the xtableGallery document. Is there any way to force single space behavior. I have nothing strange in my .Rnw file. Thanks, -stephen
Stephen J. Barr
2009-Jun-16 01:15 UTC
[R] xtable with longtable is doublespaced, rather than single as intended
Found the answer. It seems to work to wrap longtables with this set of commands: \renewcommand{\arraystretch}{0.6} % make a longtable %... \renewcommand{\arraystretch}{1.0} Hope this is useful to someone else. On Mon, Jun 15, 2009 at 5:33 PM, Stephen J. Barr<stephenjbarr at gmail.com> wrote:> Hello, > > Quick R/LaTeX question. > > I have the following code within a .Rnw file: > > <<label=regionalSummary,results=tex,echo=false>>> cVec <- c("RATE","SVC.PCT","AGR.PCT","IND.PCT","density00") > x.big <- xtable(aggregate(qp3[,cVec], list(qp3[,"COURT"]), mean)) > colnames(x.big)[1] <- "COURT" > print(x.big, tabular.environment="longtable", include.rownames=TRUE) > @ > > However, in the PDF the table comes out double spaces, rather than > single spaced like in the xtableGallery document. Is there any way to > force single space behavior. I have nothing strange in my .Rnw file. > > Thanks, > -stephen >