Re: [R] R - Array data loop selection

2012-02-05 Thread David Winsemius
] 0.583 [1] 0.583 [1] 0.583 [1] 0.583 [1] 0.583 [1] 0.583 [1] 0.583 [1] 0.583 [1] 0.583 [1] 0.583 [1] 0.583 [1] 0.583 -- View this message in context: http://r.789695.n4.nabble.com/R-Array-data-loop-selection

Re: [R] R - Array data loop selection

2012-02-05 Thread dengyu19901102
1.245474 [1] 0.6113644 0.9268212 1.2416964 [1] 1.220745 1.864054 1.566535 [1] -0.5436361 0.4582486 1.8623419 [1] 0.1931739 -0.5358076 -0.1318054 [1] 0.4009829 0.8228106 0.9057512 -- View this message in context: http://r.789695.n4.nabble.com/R-Array-data-loop-selection-tp4358282p4359994.html

Re: [R] R - Array data loop selection

2012-02-05 Thread dengyu19901102
) { ssta_winter[i,j,k] - mean(temp[i,j,]) } } } -- View this message in context: http://r.789695.n4.nabble.com/R-Array-data-loop-selection-tp4358282p4360028.html Sent from the R help mailing list archive at Nabble.com

Re: [R] R - Array data loop selection (Solved)

2012-02-05 Thread David Winsemius
-0.1318054 [1] 0.4009829 0.8228106 0.9057512 -- View this message in context: http://r.789695.n4.nabble.com/R-Array-data-loop-selection-tp4358282p4359994.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https

[R] R - Array data loop selection

2012-02-04 Thread dengyu19901102
/R-Array-data-loop-selection-tp4358282p4358282.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org

[R] Array Data

2010-08-18 Thread navishkumarb
Hello Can any one let me know how to delete a value from an array and then push back rest of the remaining elements up into an array. Thanks -- View this message in context: http://r.789695.n4.nabble.com/Array-Data-tp2329643p2329643.html Sent from the R help mailing list archive at

Re: [R] Array Data

2010-08-18 Thread Erik Iverson
On 08/18/2010 06:16 AM, navishkumarb wrote: Hello Can any one let me know how to delete a value from an array and then push back rest of the remaining elements up into an array. Thanks Reproducible examples help us understand what you mean. x - 1:10 x[-1] Is that what you mean?