Displaying 2 results from an estimated 2 matches for "data11a".
Did you mean:
data11
2012 Aug 13
4
dimnames in an array(I'll be grateful if this message will be passed to all list users)
...y2)
data11<-array(0,c(41,2,2))
data11[,1,]=y3
data11[,2,]=y3
rownames(data11)<-rownames(data11, do.NULL = FALSE, prefix = "Obs.")
colnames=c("V","R")
varnames=c("one","two")
dimnames(data11)<-list(rownames(data11), varnames, colnames)
data11a<-as.array(data11, dimnames=dimnames(data11))
The analysis that I would like to do with R(CollocInfer) runs as
follows(I print for the sake of introduction here though to run this
line of code requires extensive setup)
res11a = inneropt(coefs, times=times, data=data11a, lik=lik,
proc=proc, pars...
2012 Aug 08
1
dimnames in array
...41,2))
data11[,1,] = y+m9
data11[,2,] = y+m9
rownames(data2, do.NULL = FALSE, prefix="row")
varnames=c("V","R")
colnames(data6)=c("one","two")
colnames(data10)=colnames(data6)
dimnames(data11)=list(rownames(data2),varnames,colnames(data10))
data11a<-as.array(data11,dimnames=dimnames(data11))
attributes(data11a)
#so this seems to print out the array attributes as they
should be: two sets of two columns each, and the first column of
each set is called 'v' and the second 'r'- no problem#
now the analysis from colloc infer(I...