Re: [R] Plot data inside matrix

2010-11-29 Thread alcesgabbo
yes, this is a zoo object. First off all I have: procProperty: "sensor3" "sensor3" "sensor3" "sensor3" "sensor3" "sensor3" "sensor3" "sensor3" property: "A" "B" "B" "A" "B" "B" "A" "A" "A" data: 40 20 31 32 15 33 15 12 4 I create a matrix with this objects: data<-cbind(data,property) data<-

Re: [R] Plot data inside matrix

2010-11-29 Thread David Winsemius
On Nov 29, 2010, at 6:22 AM, alcesgabbo wrote: Hi, I have this problem: I have this matrix: Doubtful that is is a matrix. In R matrices are all of the same type of object. This looks more like a zoo object since it has a time index. How was it created and what does str() show?