LoginSignup
0
0

More than 3 years have passed since last update.

numpyで文字データのファイルを読み込む

Last updated at Posted at 2020-10-10

列名など、文字データが格納されたファイルをnumpyで読み込むとエラーがでます。

dtype='unicode'を指定すると読み込むことができます。

seedsAt_np = np.loadtxt('seeds_attribute.csv', delimiter=',', dtype='unicode')
0
0
0

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