On Tue, 2008-07-15 at 10:10 -0300, Leandro Marino wrote:
> Hi,
>
> I have an list() like this:
>
> $VAR1
> Num Perc media stdev min P5P10P25
> 1 4381 56.35 181.35 39.81 87.13 123.05 132.59 152.95
> 2 1628 20.94 192.83 43.76 87.13 125.09 138.78 162.04
> 3786 10.11
Dear Leandro,
Another option could be sink(). See ?sink for more information. Here is an
example:
x = list(VAR1 = data.frame(x=rnorm(10), y=rnorm(10)),
VAR2 = data.frame(x=rnorm(10), y=rnorm(10)))
sink("C:/list1.txt")
x
sink()
HTH,
Jorge
On Tue, Jul 15, 2008 at 9:10 AM, Leandro Mari
Maybe you can use the dput:
x <- list(VAR1 = data.frame(x=rnorm(10), y=rnorm(10)),
VAR2 = data.frame(x=rnorm(10), y=rnorm(10)))
dput(x, file='list.txt')
x <- source('list.txt')[[1]]
On Tue, Jul 15, 2008 at 10:10 AM, Leandro Marino
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have an list() l
Hi,
I have an list() like this:
$VAR1
Num Perc media stdev min P5P10P25
1 4381 56.35 181.35 39.81 87.13 123.05 132.59 152.95
2 1628 20.94 192.83 43.76 87.13 125.09 138.78 162.04
3786 10.11 197.23 50.65 88.16 120.46 136.62 159.33
4980 12.60 170.90 38.34 86.98
4 matches
Mail list logo