Skip to content
Prev 31636 / 398506 Next

"Dumb" plots?

How about:

Dat <- array(1:10, dim=c(10,2))
dimnames(Dat) <- list(NULL, c("x", "y"))
Crt <- array(" ", dim=c(10,10))
Crt[Dat] <- "*"
for(i in 1:10)
	cat(Crt[,11-i], "\n")

This worked in both R 1.6.2 and S-Plus 6.1 under Windows 2000.
hth.  spencer graves
Robert Lundqvist wrote: