Skip to Content
Think Stats 第2版 ―プログラマのための統計入門
book

Think Stats 第2版 ―プログラマのための統計入門

by Allen B. Downey, 黒川 利明, 黒川 洋
August 2015
Intermediate to advanced
272 pages
5h 46m
Japanese
O'Reilly Japan, Inc.
Content preview from Think Stats 第2版 ―プログラマのための統計入門
96
7 章 変数間の関係
7-2
 ジッターと透明化(左)と六角形ビン分割プロットによる散布図(右)
7-2
の右側は結果を表しています。
hexbin
の長所は、生成するファイルのサイ
ズについても時間についても、関係性もうまく表し、また大きなデータセットに対し
ても効果的な点です。逆に難点は、外れ値が見えなくなってしまう点です。
この話の教訓は、誤解を招きかねない余計なものをもたらさず、明確な関係を表す
散布図の作成は簡単でないということです。
7.2
 関係を特徴付ける
散布図は、変数間関係の全般的な印象を与えますが、関係の性質についてより深い
洞察を与えてくれる可視化が他にもあります。その
1
つが、ある変数をビンに分けて、
他の変数のパーセンタイルをプロットするものです。
NumPy
pandas
では、そのようにデータをビンに分ける関数を用意しています。
df = df.dropna(subset=['htm3', 'wtkg2'])
bins = np.arange(135, 210, 5)
indices = np.digitize(df.htm3, bins)
groups = df.groupby(indices)
dropna
は、カラムの中で
nan
を持つ行を削除します。
arange
NumPy
配列のビ
ンを
135
から
210
の前まで
5
ずつ増やして作ります。
digitize
は、
df.htm3
の各値を含むビンのインデックスを計算します。結果は整数
インデックスの
NumPy
配列です。最小値のビンよりも低い値は、インデックス ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

マスタリングLinuxシェルスクリプト 第2版 ―Linuxコマンド、bashスクリプト、シェルプログラミング実践入門

マスタリングLinuxシェルスクリプト 第2版 ―Linuxコマンド、bashスクリプト、シェルプログラミング実践入門

Mokhtar Ebrahim, Andrew Mallett, 萬谷 暢崇, 原 隆文
マイクロサービスアーキテクチャ 第2版

マイクロサービスアーキテクチャ 第2版

Sam Newman, 佐藤 直生, 木下 哲也
機械学習デザインパターン ―データ準備、モデル構築、MLOpsの実践上の問題と解決

機械学習デザインパターン ―データ準備、モデル構築、MLOpsの実践上の問題と解決

Valliappa Lakshmanan, Sara Robinson, Michael Munn, 鷲崎 弘宜, 竹内 広宜, 名取 直毅, 吉岡 信和

Publisher Resources

ISBN: 9784873117355Other