search for: resultdata

Displaying 4 results from an estimated 4 matches for "resultdata".

2002 Dec 19
1
lattice and display
...s about xyplot display. ---------------------------------------------------------------------------- --------------------------------- 1.I would like to create two differeny xyplot with different color to identify my different groups but I have trouble applying colors. Here are the scripts xyplot(resultdata$Y~resultdata$X , data=resultdata,groups=resultdata$Block, panel="panel.xyplot", panel.groups="panel.xyplot", xlab="X",ylab="Y",pch="*", col.groups=trellis.par.get("superpose.symbol")$col[1:6],cex=2, key=list(space="right",...
2002 Dec 19
2
list to data.frame
...---------------------------------------------------------------------- >- --------------------------------- > 1.I would like to create two differeny xyplot with different color to > identify my different groups but I have trouble applying colors. > Here are the scripts > > xyplot(resultdata$Y~resultdata$X , > data=resultdata,groups=resultdata$Block, panel="panel.xyplot", > panel.groups="panel.xyplot", > xlab="X",ylab="Y",pch="*", > col.groups=trellis.par.get("superpose.symbol")$col[1:6],cex=2, > key=list(sp...
2004 Feb 28
1
cluster-gruop-match with other attributes after na.omit
Hi, i want a cluster-analysis with clara, but getting an error because in cldat are NA's. Error in clara(cldat[, 1:3], 4) : Each of the random samples contains objects between which no distance can be computed. cldatx <- subset(cldat,select=c(A,B,C)) cldaty <- na.omit(cldatx) Now , clara works but cldat has ~193.000 obs and cldatx without NA's ~75.000 obs. How could i match
2008 Jul 07
5
question on lm or glm matrix of coeficients X test data terms
Hi, is there an easy way to get the calculated weights in a regression equation? for e.g. if my model has 2 variables 1 and 2 with coefficient .05 and .6 how can I get the computed values for a test dataset for each coefficient? data var1,var2 10,100 so I want to get .5, 60 back in a vector. This is a one row example but I would want to get a matrix of multiplied out coefficients