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 Nabble.com.
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?