将元素添加到 numpy 数组

2022-11-02Python开发问题
1

本文介绍了将元素添加到 numpy 数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有以下 numpy 数组

I have the following numpy array

import numpy as np

X = np.array([[5.], [4.], [3.], [2.], [1.]])

我想在开头插入 [6.].我试过了:

I want to insert [6.] at the beginning. I've tried:

X = X.insert(X, 0)

如何插入到 X 中?

推荐答案

numpy 有一个 insert 函数,可以通过 np.insert 和 文档.

numpy has an insert function that's accesible via np.insert with documentation.

在这种情况下,您需要像这样使用它:

You'll want to use it in this case like so:

X = np.insert(X, 0, 6., axis=0)

第一个参数X指定要插入的对象.

the first argument X specifies the object to be inserted into.

第二个参数0指定位置.

第三个参数6.指定要插入的内容.

The third argument 6. specifies what is to be inserted.

第四个参数axis=0 指定插入应该发生在每一列的0 位置.我们可以选择行,但您的 X 是列向量,所以我想我们会保持一致.

The fourth argument axis=0 specifies that the insertion should happen at position 0 for every column. We could've chosen rows but your X is a columns vector, so I figured we'd stay consistent.

这篇关于将元素添加到 numpy 数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

在xarray中按单个维度的多个坐标分组
groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)...
2024-08-22 Python开发问题
15

Pandas中的GROUP BY AND SUM不丢失列
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)...
2024-08-22 Python开发问题
17

pandas 有从特定日期开始的按月分组的方式吗?
Is there a way of group by month in Pandas starting at specific day number?( pandas 有从特定日期开始的按月分组的方式吗?)...
2024-08-22 Python开发问题
10

GROUP BY+新列+基于条件的前一行抓取值
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)...
2024-08-22 Python开发问题
18

PANDA中的Groupby算法和插值算法
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)...
2024-08-22 Python开发问题
11

PANAS-基于列对行进行分组,并将NaN替换为非空值
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)...
2024-08-22 Python开发问题
10