Deepayan Sarkar wrote:

Pretty much what 'append' does.

A shame then, that help.search("insert") doesn't find 'append'! I cant think why anyone looking for a way of _inserting_ a value in the middle of a vector would think of looking at "append"!


 Python has separate insert and append methods for vectors.

 >>> x=[1,2,3,4,6]
 >>> x.insert(4,5)
 >>> x
 [1, 2, 3, 4, 5, 6]
 >>> x.append(99)
 >>> x
 [1, 2, 3, 4, 5, 6, 99]


Barry

______________________________________________
[EMAIL PROTECTED] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to