I think I found out about the existing problem with generation of tables done by latex():

Checking the source code of 'table.R' I noticed any optional arguments specified seem to be discarded when calling the function latex.table() after preprocessing the summary.rqs-output

So unlike stated in the reference manual (p. 25)

> latex.summary.rqs Make a latex table from a table of rq results
[...]
> ...       optional arguments for latex.table

it is not possible to pass any preferences regarding the layout to latex.table().


The solution is extremely simple:

by changing line 36 in the code 'table.R':

latex.table(table, caption = caption, rowlabel = rowlabel, file = file)

into:

latex.table(table, caption = caption, rowlabel = rowlabel, file = file, ...)

the funcionality described in the reference manual is implemented.


Maybe this helps someone who is confronted with the same problem...


Jan


--
jan.henckens | jöllenbecker str. 58 | 33613 bielefeld
tel 0521-5251970

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to