Displaying 1 result from an estimated 1 matches for "namefull".
Did you mean:
name_full
2011 Jan 04
0
Error in M[, 1] : incorrect number of dimensions when trying to plot hexbin
...onRegion.pdf")
tmp7=paste(tmp6,sep="")
tmp7
#pdf(tmp7)
jpeg(file="UserScatterActionRegion.jpeg")
for (i in 1:20){
x<-subset(user01 ,userID == userList[i,],select=c(X,Y))
x
bin<-hexbin(x$X, x$Y, xbins=100)
part1=rep("Action Regions")
nameFull=paste(userList[i,],part1,sep="")
nameFull
plot(bin, main=nameFull)
}
dev.off()