美文网首页
R语言在向量中插入元素

R语言在向量中插入元素

作者: 肖ano | 来源:发表于2021-08-23 19:16 被阅读0次

    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