0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

長い行列のテキスト数値データを読み込み→行例に変換するプログラムについて教えて下さい。python numpy pandas

Last updated at Posted at 2018-10-03

python 初心者です。
1行に1つの数値データがある、長い行列のデータ群を規則に従って読み込んで、行列にする方法として、ベストな方法を検討しております。

<読み込みデータサンプル>
1
2
3
4
5
1
2
3
4
5
1
2
3
4
5
.
.
.

と続くデータを、

次のような順番で並べて行列にしたいのですが。

<作りたい行列>
1 1 1
2 2 2
3 3 3
4 4 4
5 5 5..

上記の数値は、場所を示しています。
実際のデータは、ランダムな実数が入っています。

python,numpy,pandas..
どれで、どのように読み込めば、シンプルなプログラムになるでしょうか?
<考え方>
1.一旦全部読み込んで、その後並べる。
2.1行ずつ読み込みながら、行列に配置して行く。

読み込むデータ行数は、10万行以上の行数を想定しています。

アドバイスよろしくお願いいたします。

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?