[R] Seeking advice on lattice package in R2.4.0 concerning stripplot

2006-12-15 Thread Dr L. Y Hin
Dear all, I am using the R 2.4.0 environment on Windows XP SP2 machine and trying to use the lattice package version 0.14-9 which you have kindly written to share with the R community. I have a question concerning the stripplot which I'd be very grateful if you can kindly advise me on: I us

[R] Problem with building R packages under Windows

2005-08-17 Thread Dr L. Y Hin
Dear all, I am coming to the guru for advise here. I am a native user of Windows, and S-plus, and the process of migrating my libraries from S to R has been more than a painstaking task... I am currently using R version 2.1.1 in Windows XP SP2. I have read the "Writing R extensions", "the FAQ in

[R] family

2005-07-20 Thread Dr L. Y Hin
Dear all, I am in the process of migrating an S programme library to R, and it involves the family entity. I have checked ?family but it does not give much detail of its components. I will be very grateful if anyone can point towards sources/ways to look up on this areas with an aim to find

[R] Can simulation involving random number generation be segmented?

2005-05-25 Thread Dr L. Y Hin
Dear all, Apologies for this pedantic question that only arise when there is hardware limitation. Setting: R 2.1.0 for windows xp sp2. Scenario: To generate 1000 samples using rnorm for a simulation activity. Background: The simulation activity requires so much memory resources that generating 200

[R] Tracking progress during iterations

2005-05-24 Thread Dr L. Y Hin
Dear all, I am using R 2.1.0 for Windows on XP SP2. In a loop such as below, we can track the progress by a screen print display as below (in S): for (i in 1:10){ print(paste("Starting simulation run no...",i)) result<-c(result,mean(data)) #A dummy example of the simulation to be done } In