Size: px
Start display at page:

Download ""

Transcription

1

2

3

4

5

6

7 :46:18

8

9 ##### Ruby ##### h = Hash.new(0) while line = gets() if line =~ /^.*?\x01(.*?)\x01/ h[$1] += 1 end end h.sort_by { k,v - v }.each { k,v print v, "\t", k, "\n" } ##### R ##### data = read.delim("...", header=false) plot(1: , data[,1], type="o", pch=16, log="xy", xlab="", ylab="")

10 PersonFinder_Mi (15635 ) PersonFinder_ot PersonFinder_Iw PersonFinder_Fk JorudanLive

11 JorudanLive PersonFinder_Mi PersonFinder_ot PersonFinder_Iw PersonFinder_Fk

12 PersonFinder_Na PersonFinder_Mi PersonFinder_Iw PersonFinder_Fk PersonFinder_Ib PersonFinder_Ao PersonFinder_ot

13

14

15

16 @NHK_PR

17

18 ./histo.rb ? >histo.out./histo3b.rb histo.out >histo3b.out data = read.csv("histo3b.out", header=false) t = as.posixct(data[,1]) n = data[,2] par(las=1) # las: label style par(mgp=c(2,0.8,0)) # : c(3,1,0) r = range(t) plot(t, n/10000, type="h", xlab="", ylab="", ylim=c(0,360), xaxs="i", yaxs="i", xlim=c(r[1]- 1800,r[2]+1800), xaxt="n", lwd=4, lend=1, col="#0068b7") r = as.posixct(c(" "," ")) br = seq(r[1], r[2], by="days") axis.posixct(1, br, at=br, format="%m/%d") axis(2, labels=" ", at=350, padj=- 1, tick=false) title(" ", line=0.5, cex.main=2)

19

20 data = read.csv("histo.out", header=false) t = as.posixct(data[,1]) n = data[,2] par(las=1) # las: label style par(mgp=c(2,0.8,0)) # : c(3,1,0) plot(t, n/10000, main="", type="l", xlab="", ylab="", xaxt="n") r = as.posixct(c(" "," ")) br = seq(r[1], r[2], by="days") axis.posixct(1, at=br, format="%m/%d") axis(2, labels=" ", at=10, padj=- 1, tick=false) title(" ", line=0.5, cex.main=2)

21

22

23

24

25

26

27

28

29

30

31 lat =... # lon =... # library(rgooglemaps) source(" u.ac.jp/~okumura/stat/data/getmap.r") MyMap = GetMap(c(35,140), zoom=5, sensor="false", hl="ja", maptype="roadmap") tmp = PlotOnStaticMap(MyMap, lat=lat, lon=lon, pch=16, col="#ff2800")

32 03/11 15:00 16:00

33 data =... # t = as.posixct(data[,1]) x = data[,2] plot(t, x/ , type="o", pch=16, xaxt="n", xlab="", ylab="") axis.posixct(1, at=round(t,"days"), format="%m/%d") axis(2, labels=" ", at=50, padj=- 1, tick=false)

34 15:00 18:00 07:00

35 t0 = as.posixct(" ") t1 = as.posixct(" ") t2 = as.posixct(" ") t3 = as.posixct(" ") plot(t[t>=t0 & t<=t1], x[t>=t0 & t<=t1]/ , type="o", pch=16, xaxt="n", xlab="", ylab="", ylim=range(x/ )) points(t[t>=t0 & t<=t1], x[t>=t1 & t<=t2]/ , type="o", pch=16, col="#f39800") points(t[t>=t0 & t<=t1], x[t>=t2 & t<=t3]/ , type="o", pch=16, col="#0068b7") axis.posixct(1, t[t >= t0 & t <= t1], format="%h:%m") axis(2, labels=" ", at=50, padj=- 1, tick=false)

36

37

38

39

40 x =... # par(mgp=c(2,0.8,0)) h = hist(x, right=f, plot=f, breaks=0:58781)$counts plot(0:1000, h[1:1001]/10000, type="h", xlab=" ", ylab="", ylim=range(c(0,h/10000))) axis(2, labels=" ", at=30, padj=- 1, tick=false)

41

42 plot(0:5000, h[1:5001], type="l", pch=1, log="y", xlab="", ylab="")

43

44

45

46

47

48

49

50

51

52

53

54 Cs- 134 (605keV) Cs- 137 (662keV) Cs- 134 (796keV) K- 40 (1461keV)

55 K- 40 I keV 81.5% keV 7.16% Cs keV 85.10% Cs keV 8.338% keV % keV 97.62% keV 85.46% keV 8.688% keV 10.66% Bi keV 45.49% keV 4.894% keV 3.107% keV 14.92% keV 5.834% keV 3.988% keV 15.30% Pb keV 7.251% keV 18.42% keV 35.60%

56

57 Cs- 134 (605keV) Cs- 137 (662keV) Cs- 134 (796keV)

58

59 Cs- 137 Cs k

60

61

62

63 ch = 0:1023 sp = scan("spectrum.txt") library(nlme) data = data.frame(ch=ch, sp=sp) fit = gnls(sp ~ (c + d*(ch- 350) + b*(ch- 350)^2 + (e1*( /0.9226)*dnorm((ch *m1)/(0.9226*s)) + e1*( /0.9276)*dnorm((ch *m1)/(0.9276*s)) + e1*(0.9762/0.956)*dnorm((ch- m1)/(0.956*s)) + e2*0.851*dnorm((ch- m2)/s) + e1*(0.8546/1.0967)*dnorm((ch- m3)/(1.0967*s)) + e1*( /1.101)*dnorm((ch *m3)/(1.101*s)) ) / s ) * (ch/350)^u, data=data, subset=260:350, start=list(c=200,d=- 3,b=0.02,e1=10000,e2=10000, m1=313,m2=342,m3=407,s=9,u=- 1.2), weights=varpower(fixed=0.5), control=list(nlstol=1e- 4))

64

65

66

67

68

69

70

71 data = read.csv( " u.ac.jp/~okumura/stat/data/fukushima csv", colclasses=c("posixct","numeric","numeric","numeric","numeric")) attach(data) # plot(,, type="l", xlab="", ylab="", xaxt="n", col="#f39800") axis(2, "μsv/h", at=0.75, padj=- 1) axis.posixct(1,, format="%y %m ") # plot(,, type="l", xlab="", ylab="", xaxt="n", col="#009944") axis(2, " ", at=35, padj=- 1) axis.posixct(1,, format="%y %m ") # cols = colorramp(c("#ff8000","#0080ff")) t = (as.numeric( ) - as.numeric( [1])) / (as.numeric( [1464]) - as.numeric( [1])) plot(,, type="p", pch=16, xlab=" ", ylab=" μsv/h ", col=rgb(cols(t)/255))

72

73 > lm( ~ + ) (Intercept) 1.280e e e- 09 # plot(,, type="l", xlab="", ylab="", xaxt="n", col="#f39800") axis(2, "μsv/h", at=0.75, padj=- 1) axis.posixct(1,, format="%y %m ") points(, *( - 20), type="l", col="#0068b7")

74

75

76

77

78 2F

79

1 R Windows R 1.1 R The R project web R web Download [CRAN] CRAN Mirrors Japan Download and Install R [Windows 9

1 R Windows R 1.1 R The R project web   R web Download [CRAN] CRAN Mirrors Japan Download and Install R [Windows 9 1 R 2007 8 19 1 Windows R 1.1 R The R project web http://www.r-project.org/ R web Download [CRAN] CRAN Mirrors Japan Download and Install R [Windows 95 and later ] [base] 2.5.1 R - 2.5.1 for Windows R

More information

DAA02

DAA02 c(var1,var2,...,varn) > x x [1] 1 2 3 4 > x2 x2 [1] 1 2 3 4 5 6 7 8 c(var1,var2,...,varn) > y=c('a0','a1','b0','b1') > y [1] "a0" "a1" "b0" "b1 > z=c(x,y) > z [1] "1" "2"

More information

5 LATEX 2ε 2010

5 LATEX 2ε 2010 2010-11-27 15:30 16:00 TEX 5 LATEX 2ε 2010 1986 Lisp-Stat 1996 ptex 1987 ASCII TEX 1990 ptex 1993 JIS X 4051 1994 ptex JIS 1995 ptex 3.0 platex 2ε 2000 jsarticle 2008 ε-ptex e-ptex 2010 TEX Live 2010

More information

plot type type= n text plot type= n text(x,y) iris 5 iris iris.label >iris.label<-rep(c(,, ),rep(50,3)) 2 13 >plot(iris[,1],iris

plot type type= n text plot type= n text(x,y) iris 5 iris iris.label >iris.label<-rep(c(,, ),rep(50,3)) 2 13 >plot(iris[,1],iris 23 2 2 R iris 1 3 plot >plot(iris[,1],iris[,3]) 11 iris[, 3] 1 2 3 4 5 6 7 iris[, 3] 1 2 3 4 5 6 7 119 106 118 123 108 132 101 110 103 104 105 126 131 136 144 109 125 145121 130 135137 129 133 141 138

More information

Microsoft PowerPoint - R-intro-02.ppt

Microsoft PowerPoint - R-intro-02.ppt R で学ぶデータ解析とシミュレーション 2 ~ グラフ作成入門 ~ 2 時間目のメニュー グラフの作成方法 グラフ作成の第一歩 高水準作図関数 高水準作図関数の種類 関数 plot() を用いた作図例 低水準作図関数 低水準作図関数の種類 低水準作図関数を用いた作図例 数学関数のプロット 数学関数の定義方法 数学関数の作図例 参考 ( 重ねた図の描き方,R の画像の編集方法 ) 2 グラフィックスは

More information

「統 計 数 学 3」

「統 計 数 学 3」 関数の使い方 1 関数と引数 関数の構造 関数名 ( 引数 1, 引数 2, 引数 3, ) 例 : マハラノビス距離を求める関数 mahalanobis(data,m,v) 引数名を指定して記述する場合 mahalanobis(x=data, center=m, cov=v) 2 関数についてのヘルプ 基本的な関数のヘルプの呼び出し? 関数名 例 :?mean 例 :?mahalanobis 指定できる引数を確認する関数

More information

DAA04

DAA04 # plot(x,y, ) plot(dat$shoesize, dat$h, main="relationship b/w shoesize and height, xlab = 'shoesize, ylab='height, pch=19, col='red ) Relationship b/w shoesize and height height 150 160 170 180 21 22

More information

バイオインフォマティクス特論12

バイオインフォマティクス特論12 藤 博幸 事後予測分布 パラメータの事後分布に従って モデルがどんなデータを期待するかを予測する 予測分布が観測されたデータと 致するかを確認することで モデルの適切さを確認できる 前回と同じ問題で事後予測を う 3-1-1. 個 差を考えない場合 3-1-2. 完全な個 差を考える場合 3-1-3. 構造化された個 差を考える場合 ベイズ統計で実践モデリング 10.1 個 差を考えない場合 第 10

More information

DAA03

DAA03 par(mfrow=c(1,2)) # figure Dist. of Height for Female Participants Dist. of Height for Male Participants Density 0.00 0.02 0.04 0.06 0.08 Density 0.00 0.02 0.04 0.06 0.08 140 150 160 170 180 190 Height

More information

RとExcelを用いた分布推定の実践例

RとExcelを用いた分布推定の実践例 R Excel 1 2 1 2 2011/11/09 ( IMI) R Excel 2011/11/09 1 / 12 (1) R Excel (2) ( IMI) R Excel 2011/11/09 2 / 12 R Excel R R > library(fitdistrplus) > x fitdist(x,"norm","mle")

More information

!!! 10 1 110 88 7 9 91 79 81 82 87 6 5 90 83 75 77 12 80 8 11 89 84 76 78 85 86 4 2 32 64 10 44 13 17 94 34 33 107 96 14 105 16 97 99 100 106 103 98 63 at 29, 66 at 58 12 16 17 25 56

More information

講義のーと : データ解析のための統計モデリング. 第3回

講義のーと :  データ解析のための統計モデリング. 第3回 Title 講義のーと : データ解析のための統計モデリング Author(s) 久保, 拓弥 Issue Date 2008 Doc URL http://hdl.handle.net/2115/49477 Type learningobject Note この講義資料は, 著者のホームページ http://hosho.ees.hokudai.ac.jp/~kub ードできます Note(URL)http://hosho.ees.hokudai.ac.jp/~kubo/ce/EesLecture20

More information

( ) ( ) ( ) D VD

( ) ( ) ( ) D VD DVD ( ) ( ) (FAX ) DVD DVD ( http://www.chibakenshakyo.com) 9:001700 (12:0013:00 ) 260-8508 4 3 1F TEL043-204-6010 FAX043-204-6015 ( ) ( ) ( ) D VD 001XX 3 18 VHS 3 XX 2 : CS 1 6 10 13 15 18 21 ( ) 27

More information

k2 ( :35 ) ( k2) (GLM) web web 1 :

k2 ( :35 ) ( k2) (GLM) web   web   1 : 2012 11 01 k2 (2012-10-26 16:35 ) 1 6 2 (2012 11 01 k2) (GLM) kubo@ees.hokudai.ac.jp web http://goo.gl/wijx2 web http://goo.gl/ufq2 1 : 2 2 4 3 7 4 9 5 : 11 5.1................... 13 6 14 6.1......................

More information

Rプログラミング

Rプログラミング 5 29 10 10 1 1 2 1 3 Excel 2 3.1 GDP................................... 2 3.2 Excel.................. 3 3.3 Excel............................... 3 3.3.1................................ 4 3.3.2.........................

More information

Word LATEX Excel R

Word LATEX Excel R 2013-11-30 10:20 10:45 TEX Live 6 R CIO Word LATEX Excel R Reproducible Research LATEX R/Sweave/knitr LL (Ruby/Perl/Python/... ) make Subversion/git 6 LATEX2ε ptex ptex +ε-tex + uptex CTAN (Comprehensive

More information

sarupaw.dvi

sarupaw.dvi PAW Which Even Monkeys Can Use H.Kitamura & His Company 9 8 19 preface PAW Which Even Monkies Can Use bold itaric vector ntuple v nt ( ) quit e-mail kitamura@phys01.phys.kobe-u.ac.jp homepage http://phys01.phys.kobe-u.ac.jp:2080/~kohama/sarupaw.html

More information

小川/小川

小川/小川 T pt T T T T p T T T T T p T T T T T T p p T T T p p T p B T T T T T pt T Tp T p T T psp T p T p T p T p T p Tp T p T p T T p T T T T T T T Tp T p p p T T T T p T T T T T T T p T T T T T p p T T T T T

More information

DAA12

DAA12 Observed Data (Total variance) Predicted Data (prediction variance) Errors in Prediction (error variance) Shoesize 23 24 25 26 27 male female male mean female mean overall mean Shoesize 23 24 25 26 27

More information

14 10 15 14 10 15 46.7 14 8 14 3 1 14 8 31 1 14 8 80,956 454,528 2.9 3.4 14,550 2.7 14,227 2.4 13 8 78,658 439,432 14,956 14,571 14 2 153,889 860,441 24,545 23,378 1 ( ) - 1-1 14 8 7,262 6.1 84 28 13 8

More information

2 A I / 58

2 A I / 58 2 A 2018.07.12 I 2 2018.07.12 1 / 58 I 2 2018.07.12 2 / 58 π-computer gnuplot 5/31 1 π-computer -X ssh π-computer gnuplot I 2 2018.07.12 3 / 58 gnuplot> gnuplot> plot sin(x) I 2 2018.07.12 4 / 58 cp -r

More information

インターネットを活用した経済分析 - フリーソフト Rを使おう

インターネットを活用した経済分析 - フリーソフト Rを使おう R 1 1 1 2017 2 15 2017 2 15 1/64 2 R 3 R R RESAS 2017 2 15 2/64 2 R 3 R R RESAS 2017 2 15 3/64 2-4 ( ) ( (80%) (20%) 2017 2 15 4/64 PC LAN R 2017 2 15 5/64 R R 2017 2 15 6/64 3-4 R 15 + 2017 2 15 7/64

More information

XV-Z10000(J)Ł\1-4.p65

XV-Z10000(J)Ł\1-4.p65 http://www.sharp.co.jp/ 4 2-JW age 2 2..5, :42 2 age 2 2..5, :44 3 age 3 2..5, :44 4 2..5, :44 age 4 5 2..5, :44 age 5 6 2..5, :44 age 6 7 2..5, :44 age 7 8 age 8 2..5, :45 75 76 9 age 9 2..5, :45 4 4

More information

Ruby 50 Ruby UTF print, \n [Ruby-1] print("hello, Ruby.\n") [Ruby-2] Hello, Ruby. [Ruby-3] print("hello, \"Ruby\".\n") 2 [Ruby-4] seisuu = 10 pr

Ruby 50 Ruby UTF print, \n [Ruby-1] print(hello, Ruby.\n) [Ruby-2] Hello, Ruby. [Ruby-3] print(hello, \Ruby\.\n) 2 [Ruby-4] seisuu = 10 pr Ruby 50 Ruby UTF-8 1 1 print, \n [Ruby-1] print("hello, Ruby.\n") [Ruby-2] Hello, Ruby. [Ruby-3] print("hello, \"Ruby\".\n") 2 [Ruby-4] seisuu = 10 print(seisuu, "\n") jissuu = 3.141592 print(jissuu, "\n")

More information

JMP V4 による生存時間分析

JMP V4 による生存時間分析 V4 1 SAS 2000.11.18 4 ( ) (Survival Time) 1 (Event) Start of Study Start of Observation Died Died Died Lost End Time Censor Died Died Censor Died Time Start of Study End Start of Observation Censor

More information

2 I I / 61

2 I I / 61 2 I 2017.07.13 I 2 2017.07.13 1 / 61 I 2 2017.07.13 2 / 61 I 2 2017.07.13 3 / 61 7/13 2 7/20 I 7/27 II I 2 2017.07.13 4 / 61 π-computer gnuplot MobaXterm Wiki PC X11 DISPLAY I 2 2017.07.13 5 / 61 Mac 1.

More information

なぜRでグラフを 書 くの? 1.グラフがきれい 2. 書 き 直 しが 簡 単 3. 同 じようなグラフを 簡 単 に 書 ける

なぜRでグラフを 書 くの? 1.グラフがきれい 2. 書 き 直 しが 簡 単 3. 同 じようなグラフを 簡 単 に 書 ける Rでグラフ 作 成! - 基 礎 の 基 礎 の 入 門 編 - 担 当 : 河 崎 祐 樹 森 林 保 護 D2 なぜRでグラフを 書 くの? 1.グラフがきれい 2. 書 き 直 しが 簡 単 3. 同 じようなグラフを 簡 単 に 書 ける なぜRでグラフを 書 くの? 1.グラフがきれい グラフがきれいだと 気 持 ちがいい 2. 書 き 直 しが 簡 単 3. 同 じようなグラフを 簡 単

More information

pp R R Word R R R R Excel SPSS R Microsoft Word 2016 OS Windows7 Word2010 Microsoft Office2010 R Emacs ESS R R R R https:

pp R R Word R R R R Excel SPSS R Microsoft Word 2016 OS Windows7 Word2010 Microsoft Office2010 R Emacs ESS R R R R https: 計量国語学 アーカイブ ID KK300604 種別 解説 タイトル データの視覚化 (6) Rによる樹形図の作成 Title Data Visualization (6): Making Dendrogram in R statics 著者 林直樹 Author HAYASHI Naoki 掲載号 30 巻 6 号 発行日 2016 年 9 月 20 日 開始ページ 378 終了ページ 390 著作権者

More information

parser.y 3. node.rb 4. CD-ROM

parser.y 3. node.rb 4. CD-ROM 1. 1 51 2. parser.y 3. node.rb 4. CD-ROM 1 10 2 i 0 i 10 " i i+1 3 for(i = 0; i

More information

講義のーと : データ解析のための統計モデリング. 第2回

講義のーと :  データ解析のための統計モデリング. 第2回 Title 講義のーと : データ解析のための統計モデリング Author(s) 久保, 拓弥 Issue Date 2008 Doc URL http://hdl.handle.net/2115/49477 Type learningobject Note この講義資料は, 著者のホームページ http://hosho.ees.hokudai.ac.jp/~kub ードできます Note(URL)http://hosho.ees.hokudai.ac.jp/~kubo/ce/EesLecture20

More information

THE STANDARD OF JAPANESE STYLE To Our Shareholders 1

THE STANDARD OF JAPANESE STYLE To Our Shareholders 1 THE STANDARD OF JAPANESE STYLE To Our Shareholders 1 2 3 5 4 Innovative Retailer United Arrows Business News UNITED ARROWS GREEN LABEL RELAXING CHROME HEARTS 6 7 9 8 Introducing Our Labels UNITED ARROWS

More information

<4D F736F F F696E74202D BD95CF97CA89F090CD F6489F18B4195AA90CD816A>

<4D F736F F F696E74202D BD95CF97CA89F090CD F6489F18B4195AA90CD816A> 主な多変量解析 9. 多変量解析 1 ( 重回帰分析 ) 目的変数 量的 説明変数 質的 あり量的 重回帰分析 数量化 Ⅰ 類 質的 判別分析 数量化 Ⅱ 類 なし 主成分分析因子分析多次元尺度構成法 数量化 Ⅲ 類数量化 Ⅳ 類 その他 クラスタ分析共分散構造分析 説明変数 : 独立変数 予測変数 目的変数 : 従属変数 基準変数 3 1. 単回帰分析各データの構造 y b ax a α: 1,,,

More information

: (EQS) /EQUATIONS V1 = 30*V F1 + E1; V2 = 25*V *F1 + E2; V3 = 16*V *F1 + E3; V4 = 10*V F2 + E4; V5 = 19*V99

: (EQS) /EQUATIONS V1 = 30*V F1 + E1; V2 = 25*V *F1 + E2; V3 = 16*V *F1 + E3; V4 = 10*V F2 + E4; V5 = 19*V99 218 6 219 6.11: (EQS) /EQUATIONS V1 = 30*V999 + 1F1 + E1; V2 = 25*V999 +.54*F1 + E2; V3 = 16*V999 + 1.46*F1 + E3; V4 = 10*V999 + 1F2 + E4; V5 = 19*V999 + 1.29*F2 + E5; V6 = 17*V999 + 2.22*F2 + E6; CALIS.

More information

untitled

untitled 21 H22 H20 H19 H20 H19 H21 H21 H17 H21 L=650m W=16m H21 L=355m H19 L=770m 15 8 1 (1) 42 118,607.62 118,606.34 1.28 18,748.35 18,748.31 0.04 2,845.58 2,845.48 0.10 1.42 40 40 18.89 0.65 1.44 20.98

More information

広報さがみはら第1242号

広報さがみはら第1242号 LINE UP 3 1 5 6 1 NO.1242 S A G A M I H A R A 1 1 1 16 16 1 6 1 6 1 6 1 1 1 1 1 11 1 1 1 1 1 1 6 1 6 1 1 1 1 1 1 1 1 11 1 1 16 1 1 1 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 6 1 16 1 16 1 6 1 1 1 1 1 1

More information

1 15 R Part : website:

1 15 R Part : website: 1 15 R Part 4 2017 7 24 4 : website: email: http://www3.u-toyama.ac.jp/kkarato/ kkarato@eco.u-toyama.ac.jp 1 2 2 3 2.1............................... 3 2.2 2................................. 4 2.3................................

More information

1 1 2 2 3 4 5 5 6 7 8 10 9 10 10 10 11 13 14 15 15 16 17 18 19 21 21 22 22 24 28 38 40 41 41 43 45 46 47 47 47 47 48 50 50 50 50 51 52 54 54 55 56 56 57 57 57 58 58 59 59 59 61 61 61 62 62 62 62 63 63

More information

プラズマ核融合学会誌4月【84-4】/講座5

プラズマ核融合学会誌4月【84-4】/講座5 Practical Data Analysis Using Open Source Software 5. Ruby for Geophysical Fluid Sciences HORINOUCHI Takeshi corresponding author s e-mail: horinout rish.kyoto-u.ac.jp air lon lat level time global_temp.rb

More information

ODS GRAPHICS ON; ODS GRAPHICS ON; PROC TTEST DATA=SASHELP.CLASS SIDE=2 DIST=NORMAL H0=58 PLOTS(ONLY SHOWH0)=(SUMMARY); VAR HEIGHT;

ODS GRAPHICS ON; ODS GRAPHICS ON; PROC TTEST DATA=SASHELP.CLASS SIDE=2 DIST=NORMAL H0=58 PLOTS(ONLY SHOWH0)=(SUMMARY); VAR HEIGHT; Summer 2009 1 8 12 14 16 16 16 ODS GRAPHICS ON; ODS GRAPHICS ON; PROC TTEST DATA=SASHELP.CLASS SIDE=2 DIST=NORMAL H0=58 PLOTS(ONLY SHOWH0)=(SUMMARY); VAR HEIGHT; PROC SGPLOT DATA=SASHELP.PRDSALE; HBAR

More information

小川/小川

小川/小川 p TRE p Mp p p M p S p p Tp M p p p p p p p p M T T T p p MT MR MR M M p p M M p p M T T T T T T T T S T M p M p T p M E M M p p p p TT T T p p p T T p T T T T T T T p p pt T T T p S T S S T p T T T T

More information

Rとは 統計言語であるSの思想に基づいて開発されたフリーのソフ トウェア ウェブから誰でも無料で入手できる 多様なプラットフォームに対応 Unix系OS Mac OS X, Windows 豊富なパッケージ群 パッケージ 共通の目的を達成するための関

Rとは 統計言語であるSの思想に基づいて開発されたフリーのソフ トウェア ウェブから誰でも無料で入手できる   多様なプラットフォームに対応 Unix系OS Mac OS X, Windows 豊富なパッケージ群 パッケージ 共通の目的を達成するための関 R講習会 2017年6月6日 10~12時 資源管理研究センター 資源管理グループ 市野川桃子 1 Rとは 統計言語であるSの思想に基づいて開発されたフリーのソフ トウェア ウェブから誰でも無料で入手できる http://www.rproject.org/ 多様なプラットフォームに対応 Unix系OS Mac OS X, Windows 豊富なパッケージ群 パッケージ 共通の目的を達成するための関数群

More information

H22 BioS t (i) treat1 treat2 data d1; input patno treat1 treat2; cards; ; run; 1 (i) treat = 1 treat =

H22 BioS t (i) treat1 treat2 data d1; input patno treat1 treat2; cards; ; run; 1 (i) treat = 1 treat = H BioS t (i) treat treat data d; input patno treat treat; cards; 3 8 7 4 8 8 5 5 6 3 ; run; (i) treat treat data d; input group patno period treat y; label group patno period ; cards; 3 8 3 7 4 8 4 8 5

More information

/

/ / 1 UNIX AWK( ) 1.1 AWK AWK AWK A.V.Aho P.J.Weinberger B.W.Kernighan 3 UNIX AWK GNU AWK 1 1.2 1 mkdir ~/data data ( ) cd data 1 98 MS DOS FD 1 2 AWK 2.1 AWK 1 2 1 byte.data 1 byte.data 900 0 750 11 810

More information

1 2 S-PLUS python MeCab csv S-PLUS csv S- PLUS S-PLUS csv python word1,word2,word3 2 python MeCab MeCab ipadic html 2010/3/26

1 2   S-PLUS python MeCab csv S-PLUS csv S- PLUS S-PLUS csv python word1,word2,word3 2 python MeCab MeCab ipadic html 2010/3/26 2 1 2 2 2 3 3 4 4 4.1 2........................... 4 4.2........................ 5 4.3........................... 6 5 7 6 8 A 9 B 10 C 10 D 11 E 12 1 1 2 http://app.xrea.jp/dat/ S-PLUS python MeCab csv

More information

講義のーと : データ解析のための統計モデリング. 第5回

講義のーと :  データ解析のための統計モデリング. 第5回 Title 講義のーと : データ解析のための統計モデリング Author(s) 久保, 拓弥 Issue Date 2008 Doc URL http://hdl.handle.net/2115/49477 Type learningobject Note この講義資料は, 著者のホームページ http://hosho.ees.hokudai.ac.jp/~kub ードできます Note(URL)http://hosho.ees.hokudai.ac.jp/~kubo/ce/EesLecture20

More information

2011-10-22 16:50 17:40 2011-10-23 ptex CIO 20 1991 1994 1997 2000 2004 2007 2010 TEX 1986 1987 1987 ASCII TEX MicroTEX 98,000 34,000 1990 ptex ptexst C 1991 2003 LATEX 1991 min10 1993 JIS X 4051 LATEX

More information

1 R ID 1. ID Before After 1 X 1 Y 1 2 X 2 Y n 1 X n 1 Y n 1 n X n Y n. ID Group Measure. 1 1 Y 1... n 1 1 Y n1 n Y n n 0 Y n 1 E

1 R ID 1. ID Before After 1 X 1 Y 1 2 X 2 Y n 1 X n 1 Y n 1 n X n Y n. ID Group Measure. 1 1 Y 1... n 1 1 Y n1 n Y n n 0 Y n 1 E 2010 R 0 C626 R 2 t Welch t Wilcoxon 3 Fisher McNemar Box-Muller p- Excel R 1 B USB tomo-statim i.softbank.jp R WWW D3 C626 E-Mail d082905 hiroshima-u.ac.jp url http://home.hiroshima-u.ac.jp/d082905/r.html

More information

untitled

untitled Tylor 006 5 ..........5. -...... 5....5 5 - E. G. BASIC Tylor.. E./G. b δ BASIC.. b) b b b b δ b δ ) δ δ δ δ b b, b ) b δ v, b v v v v) ) v v )., 0 OPTION ARITHMETIC DECIMAL_HIGH INPUT FOR t TO 9 LET /*/)

More information

Autumn 2005 1 9 13 14 16 16 DATA _null_; SET sashelp.class END=eof; FILE 'C: MyFiles class.txt'; /* */ PUT name sex age; IF eof THEN DO; FILE LOG; /* */ PUT '*** ' _n_ ' ***'; END; DATA _null_;

More information

H22 BioS (i) I treat1 II treat2 data d1; input group patno treat1 treat2; cards; ; run; I

H22 BioS (i) I treat1 II treat2 data d1; input group patno treat1 treat2; cards; ; run; I H BioS (i) I treat II treat data d; input group patno treat treat; cards; 8 7 4 8 8 5 5 6 ; run; I II sum data d; set d; sum treat + treat; run; sum proc gplot data d; plot sum * group ; symbol c black

More information

(lm) lm AIC 2 / 1

(lm) lm AIC 2 / 1 W707 s-taiji@is.titech.ac.jp 1 / 1 (lm) lm AIC 2 / 1 : y = β 1 x 1 + β 2 x 2 + + β d x d + β d+1 + ϵ (ϵ N(0, σ 2 )) y R: x R d : β i (i = 1,..., d):, β d+1 : ( ) (d = 1) y = β 1 x 1 + β 2 + ϵ (d > 1) y

More information

untitled

untitled R 8 2 6 24 M1 M2 1 8 Takahashi, Y., Roberts, B.W., Yamagata, S., & Kijima, N. (in press). Personality traits show differential relations with anxiety and depression in a non-clinical sample. Psychologia:

More information

3 3.1 3 [Set type:] 2 c 1 2 3 XYDY DY D dispersion 4 File New 3 NEW 3:

3 3.1 3 [Set type:] 2 c 1 2 3 XYDY DY D dispersion 4 File New 3 NEW 3: 2 3 2 Dt Import ASCII [Red sets] [Directories 2 [Files] 2 b OK 1 X 2 Y 2 Import ASCII b c 2: 3 3.1 3 [Set type:] 2 c 1 2 3 XYDY DY D dispersion 4 File New 3 NEW 3: 4 5 5.1 4 4 4: 5 5.2 Plot Axis properties

More information

JAPLAシンポジウム資料 2009/12/5

JAPLAシンポジウム資料 2009/12/5 JAPLA シンポジウム資料 2009/12/5 J の OpenGL グラフィックス - その 5 - 正 12 面体と正 20 面体を動かす - 西川利男 正 12 面体と正 20 面体との頂点座標が別報 [1] のように計算されたので それを用いて J の OpenGL により 3 D グラフィックス図形を描き いろいろ動かしてみる 1. 正 12 面体と正 20 面体の J プログラム (J402

More information

Debian での数学ことはじめ。 - gnuplot, Octave, R 入門

Debian での数学ことはじめ。 - gnuplot, Octave, R 入門 .... Debian gnuplot, Octave, R mkouhei@debian.or.jp IRC nick: mkouhei 2009 11 14 OOo OS diff git diff --binary gnuplot GNU Octave GNU R gnuplot LaTeX GNU Octave gnuplot MATLAB 1 GNU R 1 MATLAB (clone)

More information

kubostat2017e p.1 I 2017 (e) GLM logistic regression : : :02 1 N y count data or

kubostat2017e p.1 I 2017 (e) GLM logistic regression : : :02 1 N y count data or kubostat207e p. I 207 (e) GLM kubo@ees.hokudai.ac.jp https://goo.gl/z9ycjy 207 4 207 6:02 N y 2 binomial distribution logit link function 3 4! offset kubostat207e (https://goo.gl/z9ycjy) 207 (e) 207 4

More information

untitled

untitled 83 01 01 02 07 09 10 170,356 114,020 56,335 40,058 16,276 4,036 221 20,091 33 461 19,663 7,472 12,190 331 12,521 202,821 135,705 67,115 43,675 23,440 3,460 450 26,451 537 487 26,501 9,801 16,700 68

More information

23 1 Section ( ) ( ) ( 46 ) , 238( 235,238 U) 232( 232 Th) 40( 40 K, % ) (Rn) (Ra). 7( 7 Be) 14( 14 C) 22( 22 Na) (1 ) (2 ) 1 µ 2 4

23 1 Section ( ) ( ) ( 46 ) , 238( 235,238 U) 232( 232 Th) 40( 40 K, % ) (Rn) (Ra). 7( 7 Be) 14( 14 C) 22( 22 Na) (1 ) (2 ) 1 µ 2 4 23 1 Section 1.1 1 ( ) ( ) ( 46 ) 2 3 235, 238( 235,238 U) 232( 232 Th) 40( 40 K, 0.0118% ) (Rn) (Ra). 7( 7 Be) 14( 14 C) 22( 22 Na) (1 ) (2 ) 1 µ 2 4 2 ( )2 4( 4 He) 12 3 16 12 56( 56 Fe) 4 56( 56 Ni)

More information

CAT. No. 1102k 2011 E-3 B206-B243

CAT. No. 1102k 2011 E-3 B206-B243 0 00mm B20 B2 0 60mm B24 B27 0 90mm B28 B22 5 20mm B224 B227 60 500mm B228 B2 B24 B24 2 2 5 52 52 52U 5 5 5U 54 54 54U 522 542 542U 52 54 54U 524 544 544U 500 552X 5200 526X 505 56X 5405 548X 5200 526X

More information

Q E Q T a k Q Q Q T Q =

Q E Q T a k Q Q Q T Q = i 415 q q q q Q E Q T a k Q Q Q T Q = 10 30 j 19 25 22 E 23 R 9 i i V 25 60 1 20 1 18 59R1416R30 3018 1211931 30025R 10T1T 425R 11 50 101233 162 633315 22E1011 10T q 26T10T 12 3030 12 12 24 100 1E20 62

More information

Microsoft PowerPoint - 統計科学研究所_R_重回帰分析_変数選択_2.ppt

Microsoft PowerPoint - 統計科学研究所_R_重回帰分析_変数選択_2.ppt 重回帰分析 残差分析 変数選択 1 内容 重回帰分析 残差分析 歯の咬耗度データの分析 R で変数選択 ~ step 関数 ~ 2 重回帰分析と単回帰分析 体重を予測する問題 分析 1 身長 のみから体重を予測 分析 2 身長 と ウエスト の両方を用いて体重を予測 分析 1 と比べて大きな改善 体重 に関する推測では 身長 だけでは不十分 重回帰分析における問題 ~ モデルの構築 ~ 適切なモデルで分析しているか?

More information

三菱電機(株): FXシリーズ計算機リンク

三菱電機(株): FXシリーズ計算機リンク ( ) FX 1... 3 2... 10 3... 11 4... 17 5... 22 6... 48 7... 50 8... 51 1 FX ( PLC) 1 1 3 2 2 10 3 3 11 4 4 17 GP-Pro Ex 5 5 22 GP-Pro EX 2 FX 1 CPU I/F 1 FX0N-232ADP RS232C 1 11 2 23 FX2NC-232ADP RS232C

More information

kubostat2015e p.2 how to specify Poisson regression model, a GLM GLM how to specify model, a GLM GLM logistic probability distribution Poisson distrib

kubostat2015e p.2 how to specify Poisson regression model, a GLM GLM how to specify model, a GLM GLM logistic probability distribution Poisson distrib kubostat2015e p.1 I 2015 (e) GLM kubo@ees.hokudai.ac.jp http://goo.gl/76c4i 2015 07 22 2015 07 21 16:26 kubostat2015e (http://goo.gl/76c4i) 2015 (e) 2015 07 22 1 / 42 1 N k 2 binomial distribution logit

More information

I 1 1 ( *) ( *) ex1-1.rb ) 2 CGI

I 1 1 ( *) ( *) ex1-1.rb ) 2 CGI I 1 1 ( *) ( *) ex1-1.rb ) 2 CGI 1-1 http://klis.tsukuba.ac.jp/klib/subjects/progi/example2018/ 1-1 1-2 http://klis.tsukuba.ac.jp/klib/subjects/progi/example2018/ 1-2 I \( ) ( ) 1 3 Ruby 1 1? 1-3 ( ) I

More information

効率化計画冊子ファイナル.PDF

効率化計画冊子ファイナル.PDF - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - (77kV) (6kV) (77kV6kV 6kV - 18-77kV 10%20% - 19 - - 20 - - 21 - - 22 - - 23 - - 24 - DB( )

More information

3 2

3 2 2 0 0 7 4 M U H VO L.3 6 CONTENTS HAYANO GROUP COMMUNICATION MAGAZINE 16 18 20 22 23 2 4 14 15 24 25 28 31 32 1 0 1 1 1 3 2 6 2 7 2 9 3 0 3 2 5 4 7 6 9 8 11 10 1 13 1 14 15 17 16 18 19 21 20 23 22 25 24

More information

3 2

3 2 2 0 0 7 1 0 M U H VO L.3 7 CONTENTS HAYANO GROUP COMMUNICATION MAGAZINE 15 16 2 11 14 18 20 22 23 24 25 28 30 31 32 4 1 0 1 3 2 6 2 7 2 9 3 2 5 4 7 6 9 8 11 10 1 13 1 15 14 17 16 1 1 1 1 1 1 1 1 1 1 1

More information

3 2

3 2 2 0 0 6 1 0 M U H VO L.3 5 CONTENTS HAYANO GROUP COMMUNICATION MAGAZINE 15 16 18 2 4 11 14 20 22 23 24 25 26 28 31 32 1 0 1 3 2 7 2 9 3 0 3 2 5 4 7 6 9 8 11 10 1 1 13 15 14 17 16 1 1 1 1 1 1 1 1 1 1 1

More information

Products catalog

Products catalog 2016 商品カタログ 低圧進相用フィルムコンデンサ % kvar 90 (b) % (c) (a) (kvar) (KVA) 220 V 100 kw 100 kw =7 % =99 % 100 ( % 130 ) 7 kvar 88 7=13 133 kw 88 kvar 101 kva 13 kvar kw kw ~ 100 kw 100 kw ~ 0 kw 0 kw ~ 2000 kw 2000

More information

3 m/sec 8.35 39.06 3.22 2.15 13.72 52.78 15.00 2.12 2.69 12.62 27.62 3 m/ 772 79 68 263 410 1,182 3 m/sec 3.87 0.63 8.00 3.12 1.38 12.50 12.50 2.00 2.50 1.00 5.50 5.50 m/ 105 122 20 247 247 3 m/sec 0.23

More information

museum data no74

museum data no74 74 Museum Data No.74 (2008.12) 1 2 Museum Data No.74 (2008.12) Museum Data No.74 (2008.12) 3 4 Museum Data No.74 (2008.12) Museum Data No.74 (2008.12) 5 6 Museum Data No.74 (2008.12) Museum Data No.74

More information

cover-1

cover-1 BMP 21-LAB BRADY Worldwide, Inc. BRADY BRADY BRADY BMP 21-LAB BRADY, Inc. Worldwide Microsoft Windows Microsoft Corporation BRADY 2013 BRADY Worldwide, Inc. All Rights Reserved 2014 1 Firmware 1 Brady

More information

1 kawaguchi p.1/81

1 kawaguchi p.1/81 1 kawaguchi atsushi@kurume-u.ac.jp 2005 7 2 p.1/81 2.1 2.2 2.2.3 2.3 AUC 4.4 p.2/81 X Z X = α + βz + e α : Z = 0 X ( ) β : Z X ( ) e : 0 σ 2 p.3/81 2.1 Z X 1 0.045 2 0.114 4 0.215 6 0.346 7 0.41 8 0.52

More information

untitled

untitled g g/cm3 g / cm3 g g g g/cm3 cm2 kv

More information

Use R

Use R Use R! 2008/05/23( ) Index Introduction (GLM) ( ) R. Introduction R,, PLS,,, etc. 2. Correlation coefficient (Pearson s product moment correlation) r = Sxy Sxx Syy :, Sxy, Sxx= X, Syy Y 1.96 95% R cor(x,

More information

km2 km2 km2 km2 km2 22 4 H20 H20 H21 H20 (H22) (H22) (H22) L=600m L=430m 1 H14.04.12 () 1.6km 2 H.14.05.31 () 3km 3 4 5 H.15.03.18 () 3km H.15.06.20 () 1.1km H.15.06.30 () 800m 6 H.15.07.18

More information

01_OpenMP_osx.indd

01_OpenMP_osx.indd OpenMP* / 1 1... 2 2... 3 3... 5 4... 7 5... 9 5.1... 9 5.2 OpenMP* API... 13 6... 17 7... 19 / 4 1 2 C/C++ OpenMP* 3 Fortran OpenMP* 4 PC 1 1 9.0 Linux* Windows* Xeon Itanium OS 1 2 2 WEB OS OS OS 1 OS

More information