Message-ID: <433D21C8.4090704@gmx.ch>
Date: 2005-09-30T11:30:16Z
From: Christoph Lehmann
Subject: Creating an array [0 to 101] of a list
In-Reply-To: <433D1B06.1060106@sun.ac.za>
a <- array(vector("list", 3), dim=c(3))
a[[1]] <- list(x = 1, y = 0, z = -1)
a[[2]] <- list(x = 0, y = 1, z = -1)
a[[3]] <- list(x = 0, y = -1, z = 0)
HTH
christoph
Rainer M. Krug wrote:
> Hi
>
> I looked, but I didn't find it:
>
> I need an array [0 to 101] where each element is a list (the result of
> Kest in spatstat).
> I.e. I want to do:
>
> A[2] <- Kest(pp1)
> A[3] <- Kest(pp2)
> ...
> A[101] <- Kest(pp100)
>
> How can I create A ?
>
> Rainer
>