Displaying 2 results from an estimated 2 matches for "cpair".
Did you mean:
pair
2010 Oct 26
1
S4 methods for rbind()
...d(x1,x2,x1,x2) to work as expected [ie rbind() should take any
number of arguments].
This is what I have so far:
setGeneric(".rbind_pair", function(x,y){standardGeneric(".rbind_pair")})
setMethod(".rbind_pair", c("mdm", "mdm"), function(x,y){.mdm.cPair(x,y)})
setMethod(".rbind_pair", c("mdm", "ANY"),
function(x,y){.mdm_rbind_error(x,y)})
setMethod(".rbind_pair", c("ANY", "mdm"),
function(x,y){.mdm_rbind_error(x,y)})
setMethod(".rbind_pair", c("ANY", "ANY"),...
2010 Dec 03
2
difference between linear model & scatterplot matrix
...made a mistake in the interpretation of the result, or not?
Thank you in advance,
Francesco
#command for matrix-plot
>dta <-
senegal5[c( 2,4,5,6,7,8,9,13,15,17,21,
39,44,45)]
>dta.r <-
abs(cor(dta))
>dta.col
<- dmat.color(dta.r)
>dta.o <-
order.single(dta.r)
>cpairs(dta,
dta.o, panel.colors=dta.col, gap=.5,
>main="Variables Ordered and Colored by
Correlation")
#command for linear model and summary()
>a<- lm ( dmp ~ Latitude
+ Longitude + Year + Tot.Prod + Herbaceous.Prod.kg.ha. + Leaf.Prod + Tree.bio + Total_Density + X1st.Speci...