ステム・アンド・リーフ     Last modified: Mar 01, 2004

例題

「表 1 のデータをステム・アンド・リーフで表しなさい。」

表 1.ステム・アンド・リーフを描くデータ
0.84 1.05 1.13 1.26 1.54
0.86 1.05 1.14 1.26 1.57
0.90 1.06 1.16 1.28 1.62
0.92 1.06 1.17 1.33 1.66
0.93 1.07 1.18 1.35 1.74
0.98 1.08 1.19 1.35 1.87
1.01 1.09 1.20 1.35 2.00
1.02 1.10 1.22 1.39
1.03 1.12 1.23 1.42
1.04 1.13 1.24 1.46


R による解析:

dat <- c(
	0.84, 1.05, 1.13, 1.26, 1.54,
	0.86, 1.05, 1.14, 1.26, 1.57,
	0.90, 1.06, 1.16, 1.28, 1.62,
	0.92, 1.06, 1.17, 1.33, 1.66,
	0.93, 1.07, 1.18, 1.35, 1.74,
	0.98, 1.08, 1.19, 1.35, 1.87,
	1.01, 1.09, 1.20, 1.35, 2.00,
	1.02, 1.10, 1.22, 1.39,
	1.03, 1.12, 1.23, 1.42,
	1.04, 1.13, 1.24, 1.46)

stem(dat,scale=2)

  The decimal point is 1 digit(s) to the left of the |

   8 | 46
   9 | 0238
  10 | 12345566789
  11 | 023346789
  12 | 0234668
  13 | 35559
  14 | 26
  15 | 47
  16 | 26
  17 | 4
  18 | 7
  19 | 
  20 | 0


stem(dat)

  The decimal point is 1 digit(s) to the left of the |

   8 | 460238
  10 | 12345566789023346789
  12 | 023466835559
  14 | 2647
  16 | 264
  18 | 7
  20 | 0


・ 手法の解説ページ
・ 直前のページへ戻る  ・ E-mail to Shigenobu AOKI