Displaying 8 results from an estimated 8 matches for "rrrr".
Did you mean:
rerr
2005 Sep 17
1
[LLVMdev] Subword register allocation
Hi,
I have a question about implementing subword register allocation
problems (see the REFERENCES in the end of this message) on LLVM. I
have algorithms, but don't know the best way to implement them in
LLVM.
I asked similar question before:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2005-
May/004001.html
Because I still don't have a satisfying solution now, I try to
elaborate it
2004 Jan 08
2
Sweave & xtable
...:3])
@
\begin{tiny}
<< trial>>=
print(n)
@
\end{tiny}
\end{document}
===snip===
which produces
===snip===
\begin{tiny}
\begin{Schunk}
\begin{Soutput}
% latex table generated in R 1.8.1 by xtable 1.2-2 package
% Thu Jan 8 16:03:23 2004
\begin{table}[ht]
\begin{center}
\begin{tabular}{rrrr}
\hline
& shares & invested.sums & weighted.price \\
\hline
JBLU & 5.78 & 260.00 & 44.68 \\
IYR & 25.12 & 2395.00 & 94.48 \\
WM & 41.09 & 1565.00 & 38.00 \\
SPY & 37.27 & 3840.00 & 102.84 \\
IBM & 25.24 & 2130.00 & 83.45 \\
EW...
2007 Sep 13
1
Problem using xtable on an array
...gt; fred <- array( seq(1,18*4), dim=c(18,4))
> fred[1:2, ]
[,1] [,2] [,3] [,4]
[1,] 1 19 37 55
[2,] 2 20 38 56
> xtable(fred[1:2, ])
% latex table generated in R 2.5.0 by xtable 1.4-6 package
% Thu Sep 13 14:09:46 2007
\begin{table}[ht]
\begin{center}
\begin{tabular}{rrrrr}
\hline
& 1 & 2 & 3 & 4 \\
\hline
1 & 1 & 19 & 37 & 55 \\
2 & 2 & 20 & 38 & 56 \\
\hline
\end{tabular}
\end{center}
\end{table}
So it is not a generic problem. But what could it be? I can't decide
where to look, so find a s...
2012 Oct 10
6
Exporting summary plm results to latex
Dear all,
I am trying to export my fixed effect results to Latex. I am using the plm package with the summary function. However, it does not look like apsrtable, stargazer, or any other package can accompany using the plm package.
I am interested in a classic table with the coefficient in one row followed by the standard error in paranthesis in the next row and stars by the coefficient to show
2007 Jan 23
0
Questions about xtable and print.xtable
...row names. I want to create a latex table
with column setting set to "|rrr|". I want the column names to
appear, but the row names not to appear. The code I am trying is this:
library(xtable)
x <- matrix(c(1:3), c(1,3), dimnames=list(NULL,c(1:3)))
tab <- xtable(x, align="|rrrr|")
print.xtable(tab, include.rownames=FALSE)
print.xtable(tab)
The problem here is that the xtable call requires an align value that
has one extra row setting, I suppose to account for a possible row
name. However, the first print.xtable call seems to ignore the align
argument set in th...
2008 Oct 23
1
Sending / Receiving WinPopup on Ubuntu Linux Workstation
Greetings-
Perhaps slightly OT, but still involving the SMB/CIFS protocol:
I am searching for an application which would allow a Linux client (Ubuntu) to send/receive WinPopup messages.
The only one I have located thus far is LinPopup. However, it depends on the Samba (server) package. I do not want to deploy a bazillion Samba servers!
TIA!
--
Michael Lueck
Lueck Data Systems
2013 May 17
2
formatting column names of data frame
Is there any way to format the headers of data frames, for printing?
I am using Sweave to generate formatted reports. In Sweave, I read in a
data.frame:
result <- read.table(path.to.table);
then display it:
print.data.frame(result);
This gives me what I expect in the eventual final output:
Record Average Maximum
1 34
2006 Oct 24
4
How to start R with a file loaded?
Hi!
I've made great progress in my R programming, but I am again stuck on a
beginner's problem.
I would like to start R with a command line that loads a file, and if
possible, executes a function.
Can anyone give me an example of how to do this?
For example, in lisp, I would say:
$ lisp -load toto.lisp -eval '(do-something $PORT)'
to load the file "toto.lisp", then