2
4

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.

Kaggle カーネルでPixieDustを使う

Last updated at Posted at 2019-05-18

Kaggle Kernel上で、PixieDustを使ってみました。

いきなりimport pixiedustを入れても動きませんでした。(*2019年5月)
まずはインストールが必要なようなので、カーネル画面右のSettings➡InternetをONにします。

無題.jpg

これでpip installなどが使えるようになります。

!pip install pixiedust

でpixiedustをインストールし、

import pixiedust 

で使用準備完了です。

使用するときは

pixiedust .display(データ名)

です。

#実際に使ってみる

試しに、タイタニックコンペで新カーネル(Note Bookを選択)を作り、PixieDustでtrain.csvを見てみます。
画面右のSettings➡InternetをONにし、以下を追記し実行します。

train = pd.read_csv("../input/train.csv")
!pip install pixiedust
import pixiedust as px
px.display(train)

PixieDustが起動しました。
最初はテーブルが表示されます。
table.jpg

左上のこのアイコンを押す見たいとグラフの種類を選択できます。
今回はBar Chartを選択してみます。
gura.jpg

左側にすべてのカラムが表示されます。Survived(生存率)とPclass(客室グレード)を縦軸、横軸にドラッグ。
OKを押します。
kjh.jpg

Bar Chartが表示されました。
ggg.jpg

詳細な使い方などはこちらのリンクにあるようです。

・PixieDust Hello World Lab

2
4
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
2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?