search for: lati36

Displaying 1 result from an estimated 1 matches for "lati36".

Did you mean: lat6
2009 Oct 02
1
How to select a subset <number of dimensions matter>
...] : incorrect number of dimensions Do you have any idea how I should fix this? *2) *I thought about another way to deal with this problem. Firstly, I name the each column variable: >colnames(data1)=paste('lati',1:36) and then select: >one=subset(data1,subset=TRUE, select = lati1:lati36) but the problem is that, although I tried to select only 36 columns, above command selects the all columns. (36*1916 =68976) I think if I can name all the variables at one time, say , colnames(data1)=paste('lati',1:68976) ,then it wouldn't have been a problem. (but obviously, <---...