Displaying 20 results from an estimated 486 matches for "xtable".
Did you mean:
table
2009 May 26
2
Using package "exams" and xtable
...egers and asks
the student to compute the median.
rx is the vector of n numbers
>str(rx)
num [1:16] 21 9 8 18 4 12 17 2 9 7 ...
I want to print out the entire vector as part of the problem.
When I use \Sexpr(rx) only the first value (in this case 21) is printed out.
I have been trying to get xtable to work.
> xtable(rx)
Error in UseMethod("xtable") : no applicable method for "xtable"
> methods(xtable)
[1] xtable.anova* xtable.aov* xtable.aovlist*
[4] xtable.coxph* xtable.data.frame* xtable.glm*
[7] xtable.lm* xta...
2012 Dec 18
1
xtable with psych objects
Hello:
I s there a way to use xtable with objects from the psych package, particularly principal()?
Is there a difference between princomp and principal? xtable seems to play better with princomp.
Thank you.
Yours, Simon Kiss
*********************************
Simon J. Kiss, PhD
Assistant Professor, Wilfrid Laurier University
73 George...
2005 May 13
5
Conflict between xtable and Hmisc when using Sweave?
Dear R users,
The Sweave code below runs fine, as it is. However, an error occurs when
the line 'library(xtable)' is uncommented:
Error: chunk 1
Error in "label<-"(`*tmp*`, value = "month") :
no applicable method for "label<-"
Is anybody aware of this and knows a workaround?
Thanks,
Sander.
*******************
\documentclass[a4paper]{article}
\title{Swea...
2009 Jul 29
2
xtable formatting: RED for negative numbers?
I've been experimenting recently with the fantastic Sweave/xtable
combination for generating latex. In the xtable vignette, I found this
great example of printing a ts object by months.
Is there a way to modify this code to generate RED numbers inside xtable for
negative results in x.ts?
Thanks in advance.
- Ken
# Sweave/xtable snippet below
-----------------...
2019 May 27
0
[ANNOUNCE] iptables 1.8.3 release
...rg/projects/iptables/downloads.html
ftp://ftp.netfilter.org/pub/iptables/
Happy firewalling.
-------------- next part --------------
Adam Gołębiowski (1):
extensions: format-security fixes in libip[6]t_icmp
Baruch Siach (5):
ebtables: vlan: fix userspace/kernel headers collision
xtables-monitor: fix build with older glibc
include: fix build with kernel headers before 4.2
xtables-monitor: fix build with musl libc
include: extend the headers conflict workaround to in6.h
Florian Westphal (12):
arptables-nft: use generic expression parsing function
xtab...
2015 Dec 18
0
[ANNOUNCE] iptables 1.6.0 release
...hangeLog that comes attached to this email for more details.
You can download it from:
http://www.netfilter.org/projects/conntrack-tools/downloads.html
ftp://ftp.netfilter.org/pub/conntrack-tools/
Help us testing and report bugs, thanks!
-------------- next part --------------
Ana Rey (7):
xtables-standalone: call nft_fini in the error path
nft: fix memory leaks in nft_xtables_config_load
iptables: nft: fix memory leaks in nft_fini
extensions: libxt_devgroup: Fix the path of the group mappings file
iptables-compat: homogenize error messages
extensions: devgroup...
2005 Aug 30
2
xtable
I have installed package xtable with
su -c 'R CMD INSTALL xtable'
and got this promising feedback:
* Installing *source* package 'xtable' ...
** R
** data
** help
>>> Building/Updating help pages for package 'xtable'
Formats: text html latex example
* DONE (xtable)
Despite that, R return...
2007 Jan 23
0
Questions about xtable and print.xtable
I have been using the wonderful xtable package lately, in combination
with Sweave, and I have a couple of general questions along with a
more particular one.
I'll start with the particular question. I basically have a 1x3 array
with column names but no row names. I want to create a latex table
with column setting set to &qu...
2004 Jan 08
2
Sweave & xtable
I am just starting to learn Sweave (really neat tool). I am pretty
early in the learning curve (I had to think a moment ago whether a # or
% was the appropriate comment character).
I have successfully incorporated simple graphics and outputs, but am
having trouble getting a latex (xtable) table to function properly.
Latex is seemingly treating the xtable code as input or verbatim text.
That is, if I run Sweave('myfile.Snw', echo=T) I get the latex syntax
xtable code handed to me twice in the myfile.dvi. Turning echo off, I
get the xtable code (not the nicely formated lat...
2009 Jul 29
1
xtable formatting: RED for negative numbers?
I've been experimenting recently with the fantastic Sweave/xtable combination
for generating latex. In the xtable vignette, I found this great example of
printing a ts object by months.
Is there a way to modify this code to generate RED numbers inside xtable for
negative results in x.ts?
Thanks in advance.
- Ken
# Sweave/xtable snippet below
-------------...
2013 May 24
2
xtable() with booktabs option problem
I could have sworn that yesterday xtable(file, booktabs = TRUE) was giving me toprule , midrule and bottomrule outout. Today :
library(xtable)
aa <- table( sample(letters[1:9], 100, replace = TRUE))
xtable(aa,
booktabs = TRUE)
gives me
\begin{table}[ht]
\centering
\begin{tabular}{rr}
\hline
& V1 \\
\hline
a &a...
2012 Apr 03
3
Sweave xtable
Hola
Tengo un problema con Sweave y xtable, concretamente quiero cambiar el color según un criterio, creo que es más fácil explicar con los siguientes ejemplos, uno puede correr directamente porque es R, al siguiente código hay que guardarlo como Rnw, y luego puede ser corrido en R, donde seguramente al correr este se darán cuenta de mis do...
2008 Apr 09
1
[announce] Xtables-addons 1.5.4
Hi everyone,
Xtables-addons 1.5.4 has been released; highlights of this release are
the import, cleanup/bugfixing the "condition" and "ipp2p" matches and
additionally extending the "IPMARK" by IPv6. I hope people don''t mind,
but I have not heard back so far, so I take it it...
2004 Jun 22
1
Using xtable with summaries of lm objects
Hi all
Suppose I do the following:
set.seed(1000)
library(xtable)
x <- runif( 10 )
y <- 1 + 2*x + rnorm( length(x) )
test.lm <- lm( y ~ x )
summary( test.lm )
xtable ( summary( test.lm ) )
The final xtable output follows:
% latex table generated in R 1.8.1 by xtable 1.2-2 package
% Tue Jun 22 09:56:36 2004
\begin{table}[ht]
\begin{center}
\begin{tab...
2015 Jul 07
1
[ on call
I'm rather puzzled by this behavior:
e
export("caption<-", "caption", "label", "label<-", "align<-",
"align", "digits<-", "digits", "display<-", "display", "xtable",
"print.xtable", "toLatex.xtable")
> e[[1L]]
e[[1L]]
export
> e[-1L]
e[-1L]
"caption<-"("caption", "label", "label<-", "align<-", "align",
"digits<-", "digits", &q...
2007 Aug 09
1
Need Help: Installing/Using xtable package
...of the bioconductor group.
I used the bioconductor utility to install this package and also the
CRAN package.install function.
My computer crashed a week ago. Today I reinstalled all my
bioconductor/R packages. One of my scripts is giving me the following
error:
in my script I set:
library("xtable")
print.xtable(....
and receive this error:
Error : could not find function "print.xtable"
This is a new error and I cannot find the source.
I reinstalled xtable with the messages below(which are the same
whether I use CRAN or bioconductor):
Any help is appreciated! Thanks!
Matt...
2007 Jun 20
2
"xtable" results doesn't correspond to data.frame
Dear useRs,
Am trying to use xtable on the following data.frame and I don't get what I
expect:
example.table <- data.frame(rbind(
c("Gender"," "," "," "),
cbind(rep(" ",2),c("Male","Female"),c(3.0,4.0),c(3/7,4/7))
))
colnames(example.table) <- c...
2013 Feb 17
1
xtable nlme
Hola a todos
Les consulto por un problema con xtable y nlme, tomando un ejemplo del
manual de nlme para obtener los resultados en latex utilizando xtable,
se puede utilizar el siguiente código, pero hay un problema y causa
error.
library(nlme)
library(xtable)
fm1 <- nlme(height ~ SSasymp(age, Asym, R0, lrc),
data = Loblolly,...
2013 Jul 15
2
tablas de R a latex
Hola:
El 15/07/13 09:41, José Luis Cañadas Reche escribió:
> Hola. Yo suelo utilizar knitr, con sweave creo qeu había que utilizar
> print(objeto xtable)
>
> De esta forma, utilizando xtable
>
>
> library(xtable)
> tabla.xtable <- xtable ( tutabla)
> print(tabla.xtable)
No es necesario utilizar print, con xtable(tutabla) basta.
Las excepciones son cuando hay que «sanear» la tabla, cuando hay que
rotarla, cuando lleva colo...
2013 Sep 13
2
xtable use plus minus
...;Fruits", "Adam","errorA", "steve", "errorS",
"apples", 17.1,2.22, 3.2,1.1,
"oranges", 3.1,2.55, 18.1,3.2 )
a_table=data.matrix(t(matrix(a,nrow=5)))
I would like to plus minus every second column starting from errorA (using
xtable/ hmisc)
example output (ignoring decimals):
Fruits && Adam && Steve \\
Apples && 17\pm 2 && 3 \pm 1 \\
Oranges && 3\pm 2 && 18 \pm 3\\
Additionally is there any way I can have just to 2 d.p.?
Thanks,
Sachin
[[alternative HTML version deleted]...