[R] 'loop FOR' for make plots

2006-03-30 Thread klebyn
Hello How to create plots dynamically with results of several analysis ? I got many outputs from lm fuction like: mp1.lm mp2.lm mp3.lm mp4.lm mp5.lm ... I'd like to make experimental versus predicted response plots of all analysis in a 'for loop': for( i in 1:10){ x11() plot(

[R] about lm restrictions...

2006-01-26 Thread klebyn
Hello all R-users _question 1_ I need to make a statistical model and respective ANOVA table but I get distinct results for the T-test (in summary(lm.object) function) and the F-test (in anova(lm.object) ) shouldn't this two approach give me the same result, i.e to indicate the same

[R] How to reverse the sequence of axis Y ??

2005-12-17 Thread klebyn
| . | . | . | | + 0 1 2 3 ... thanks in advance klebyn __ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

[R] about comparison of KURTOSIS in package: moments and fBasics

2005-12-01 Thread klebyn
Hello I do not know very much about statistics (and English language too :-( ), then I come in search of a clarification (explanation): I found two distinct results on KURTOSIS and I do not know which of them is the correct one. Any aid will be welcome! klebyn CODE

[R] help with the coordinates of the ECDF object

2005-11-01 Thread klebyn
) summary.stepfun(Fn12) print(ls.Fn12 - ls(env= environment(Fn12))) ##[1] f method n x y yleft yright # Example by ?ecdf My objetive seems to this: plot(Fn12) identify( x = knots(Fn12), y = ??, labels=my string set) or text... thanks in advanced klebyn

[R] playing with R: make a animated GIF file...

2005-10-05 Thread klebyn
Hello all I am playing with R for to make a animated GIF. any suggestions, improvements are welcome :-) case somebody could help me, i thanks! Cleber N. Borges ( klebyn ) my objective: (steps TODO) --- 1) to save PNG files; - i don't know the best way to make

[R] scatterplot3d + density() + polygon(color)

2005-09-27 Thread klebyn
Hi R Users, How to use the function polygon() together with the package scatterplot3d? I am trying to color below of the curves defined for the function density(). I tried to use the site: R GRAPH GALLERY as tutorial. I tried to adapt the example of this page: [figure]:

[R] about confounded variances in NESTED and SPLIT PLOT designs

2005-07-20 Thread klebyn
All R users We observed that for the NESTED DESIGN there is a junction of the variable effects randomic that impede the separation of the values of these variance components. Does this also happen in the SPLIT-PLOT method? Is there junction between main plot error and replicate error? There

[R] How to use the function plot as Matlab?

2005-07-12 Thread klebyn
Hello, How to use the function plot to produce graphs as Matlab? example in Matlab: a = [1,2,5,3,6,8,1,7]; b = [1,7,2,9,2,3,4,5]; plot(a,'b') hold plot(b,'r') How to make the same in R-package ? I am trying something thus: a - c(1,2,5,3,6,8,1,7) c(1,7,2,9,2,3,4,5) - b a;b