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 3 years have passed since last update.

人工知能を学習した備忘録

Posted at

参加したネットでの人工知能学習の備忘録

1.データを読み込む
1)ライブラリのインポート
   numpy, pandas, matplotlib
2)データの読み込み
3)データの各カラムの確認
4)データフレームの先頭や末尾の確認
DataFlame.head()
DataFlame.tail()
5)データフレームの形の確認
DataFlame.shape
6)データフレームの各カラムのデータの確認
DataFlame.info()
  このときに欠損値の存在確認ができる
7)カラムの形の変更
8)データの並び替え
  DataFlame.sort_values(by="カラム", ascending=True(昇順) or False(降順) , inplace= True(更新する) or False(更新しない))
9)インデックスの付加・更新
  DataFlame.set_index(keys="カラム", inplace=True(更新する) or False(更新しない)
10)重複カラムの確認
11)重複カラムの削除
   DataFlame.drop(Columns="カラム", inplace=True(更新する) or False(更新しない))
2.データの統計量
1)データの確認
  DataFlame.describe()

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?