科学の箱

科学・IT・登山の話題

Python

すべての要素が同じ値を持つ配列を生成

投稿日:

配列はリストから生成できるが、numpyでは様々な方法で目的とする配列を生成できる。

  • すべての要素が0である配列の生成
  • すべての要素が1である配列の生成
  • すべての要素が同じ値である配列の生成

すべての要素が0である配列の生成

すべての要素を0にするためにはnumpy.zeros()を利用する。

numpy.zeros

必ず必要となる引数はshapeであり、配列の次元を指定する。

print(np.zeros((3, 6)))
# [[0. 0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0. 0.]]
print(np.zeros((3, 6)).dtype)
# float64

またdtypeを指定することで要素の型も指定できる。

print(np.zeros((3, 6),dtype=np.int8).dtype)
# int8

 

すべての要素が1である配列の生成

zerosと同様にすべての要素が1である配列はnumpy.ones()で生成できる。

print(np.ones((3, 6)))
#[[1. 1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1. 1.]
 [1. 1. 1. 1. 1. 1.]]

print(np.ones((3, 6)).dtype)
# float64

dtypeを指定することで型を変更できる。

print(np.ones((3, 6), dtype=np.int8).dtype)
# int8

 

すべての要素が同じ値である配列の生成

すべての要素が同じ値である配列はnumpy.full()を使用する。

shapeには配列の次元をシーケンス型で引き渡す。設定したい値はfull_valueである。

print(np.full((3,5),3.14))
# [[3.14 3.14 3.14 3.14 3.14]
 [3.14 3.14 3.14 3.14 3.14]
 [3.14 3.14 3.14 3.14 3.14]]

 

 

メタ情報

inarticle



メタ情報

inarticle



-Python
-

執筆者:


comment

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

関連記事

no image

kaggle Titanic Tutorial – 11

kaggleで人気があるlightGBMをつかってみる。   インストール pip install lightgbm 特に問題がなく終了。 コード、関係するところだけ記載。 split_be …

no image

scikit-learnで適切なアルゴリズムを選択するためのチートシート

  http://scikit-learn.org/stable/tutorial/machine_learning_map/index.html Related posts:pythonで …

no image

SIGNATE お弁当の需要予測-5

相関の概要を見てみる。これによりどの変数を利用して回帰するかを考える。 sns.heatmap(d_train_w.corr(),cmap=’coolwarm’) Related posts:data …

no image

dataframeで条件を付けて要素を返す方法

前回の続きから。 dfは現在以下のようになっている。 W X Y Z A 2.706850 0.628133 0.907969 0.503826 B 0.651118 -0.319318 -0.848 …

no image

pythonからgoogle translateを使う

まずはパッケージをpip経由でインストール pip install googletrans これで完了。あとは利用するだけです。 日本語を英語に翻訳するとき。 translator = Transla …

2019年9月
« 8月   10月 »
 1
2345678
9101112131415
16171819202122
23242526272829
30  

side bar top



アーカイブ

カテゴリー