R语言中插入元素使用的是append()方法,python中使用的是insert方法。注意R语言下标从1开始,python从0开始。
# R
a <- c(1:10)
> append(x = a, 11, after = 5)
[1] 1 2 3 4 5 11 6 7 8 9 10
# Python
b = [i for i in range(1, 11)]
b.insert(5, 11)
R语言中插入元素使用的是append()方法,python中使用的是insert方法。注意R语言下标从1开始,python从0开始。
# R
a <- c(1:10)
> append(x = a, 11, after = 5)
[1] 1 2 3 4 5 11 6 7 8 9 10
# Python
b = [i for i in range(1, 11)]
b.insert(5, 11)
本文标题:R语言在向量中插入元素
本文链接:https://www.haomeiwen.com/subject/bcpliltx.html
网友评论