试一下这个
col <- apply(x, 1, function(x) which(x>0)[1] )
colnames(x)[col]
<br />
x <- matrix(0,5 ,10)<br />
x[sample(50, 20)] <- sample(50, 20)<br />
colnames(x) <- as.character(seq(as.Date("2010/1/1"), as.Date("2010/1/10"), "day"))<br />
x<br />
2010-01-01 2010-01-02 2010-01-03 2010-01-04 2010-01-05 2010-01-06 2010-01-07<br />
[1,] 0 42 49 0 0 50 0<br />
[2,] 0 0 0 0 17 13 0<br />
[3,] 0 0 21 18 0 9 0<br />
[4,] 2 0 0 31 0 0 0<br />
[5,] 0 39 11 0 0 25 0<br />
2010-01-08 2010-01-09 2010-01-10<br />
[1,] 35 28 19<br />
[2,] 0 10 0<br />
[3,] 37 15 0<br />
[4,] 6 0 0<br />
[5,] 0 0 0<br />
col <- apply(x, 1, function(x) which(x>0)[1] )<br />
colnames(x)[col]<br />
[1] "2010-01-02" "2010-01-05" "2010-01-03" "2010-01-01" "2010-01-02"</p>
<p>
</p>