2 PC 2.1 PC 3 Stata ado Help Official Update Recommendation : compare these dates with what is available from update query curre

Size: px
Start display at page:

Download "2 PC 2.1 PC 3 Stata ado Help Official Update Recommendation : compare these dates with what is available from update query curre"

Transcription

1 Stata 1 Stata Stata web site 1 Stata is used by medical researchers, biostatisticians, epidemiologists, economists, sociologists, political scientists, geographers, psychologists, social scientists, and other research professionals needing to analyze data. Stata canned package Stata Stata TSP Rats SHAZAM E-views LIMDEP SPSS SAS Ox C Matlab GAUSS Ox C Matlab GAUSS TSP Rats E-views Stata Stata Stata Stata Stata ado web ado Stata ado Stata corp. Stata Stata 7 special edition 1

2 2 PC 2.1 PC 3 Stata ado Help Official Update Recommendation : compare these dates with what is available from update query currently installed last available 4 Recommendation wstata.exe ado ado Stata Corp. Stata ado ado Box-Cox ado ado Help STB and User-written programs ado ado ado help ado ado Stata 6 2

3 2.2 Stata Stata Results Review Variables Stata Command Fonts Prefs Save Windowing preferences 3 Stata 3.1 Stata Results 3.2 Stata Command Stata Stata 3.3 Review Stata Command Stata Command 3

4 3.4 Variables Stata Command Stata 3MB set mem 30m 30MB 4.2 Stata Results Open Log Append Overwrite Stata Results Stata Close log file 5 Stata Stata 4

5 6 4.3 set more off Stata Results -- more -- do 5 Stata Stata Stata Stata.dta 5.1 Stata Name Label Name 7 _all _b byte _coef _cons double float if in int long _n _N _pi _pred _rc _se _skip using with 6 7 Stata 7 5

6 Label Variables Name Label Label. 5.2 Data editor 5.3 Excel Excel Name Excel Data editor Edit Paste 5.4 insheet 5.5.dct infix using "C:\My Documents\sick.dct" infix dictionary using "C:\My Documents\sick.dat" { hhold } sick.dat hhold 6

7 5.6 Label Name Label Label Data Editor Stata Variable Infomation Label Do label var hhold "Household ID" hhold Household ID 5.7 Stata Stata Name Label Stata Stata Stata Stata 3MB Stata set mem File Open Help Stata Help Help Search 191 search Do 7

8 6.2 Data Browser Data Editor Data Browser Data Browser Data Editor Data Browser Data Browser 6.3 Do Do Stata Do Do Stata Do file editor Do file editor Do Do Do Do Do Do /* */ Stata /* */ set mem 30m set more off /* Converting sick report to Stata format */ quietly infix using "C:\My Documents\2001\Ii\Intage\sicka.dct" save "C:\My Documents\2001\Ii\Intage\sicka.dta", replace /* generating data about 1st time to go to a doctor */ generate godoc1st = 1 if cope1n1 == 1 quietly replace godoc1st = d1d + 1 /* */ if cope1n1 ==. & cope2n1 == 1 8

9 describe codebook list inspect sum sum hosd1-hosd30 hosd1, hosd2,..., hosd30 centile table table tabulate correlate 7.2 drop table duration godoc1st if age >= 40 & duration < 11 age 40 duration 11 duration, godoc1st if == >= <= > < ~= & + - / * ^. 9 Help graph 9

10 if sum duration if sickname == 1 sum duration if sickname == 2... by gsort sickname by sickname : sum duration sickname by by 10 sum duration if age <= 9 & age >=0 sum duration if age <= 19 & age >=10... for for num 0/9 : sum duration if age <= X9 & age >=X0 X X 10 X, Y, Z by for for num 2/29 \ num 3/30 : gsort hosdcx \ by hosdcx : sum hosdy 10 10

11 gsort hosdc2 by hosdc2 : sum hosd3 gsort hosdc3 by hosdc3 : sum hosd4... gsort hosdc29 by hosdc29 : sum hosd30 by for 7.3 sum generate hosdc2 = hosd1 + hosd2 generate log generate egen egen max, min, sum, median [ n 1] 11 1 sort id time by id: generate dhos = hos[_n] + hos[_n-1] hos 1 id dhos sort id time by id: generate dhos = hos[_n+1] + hos[_n] 11 ts 11

12 replace generate avedoc = 0 if godoc1st ==. for num 2/30 : quietly replace avedoc = hosdcx / duration if duration == X quietly replace avedoc = 1 if duration == 1 & godoc1st == 1 avedoc godoc1st duration X X hosdcx duration generate inc700d = 1 if income >= 700 & income ~=. replace inc700d = 0 if income < 700 pref generate replace tabulate pref, generate(pref) pref1, pref2,... label pref == Stata keep drop 12

13 keep if drop if keep drop 2 append merge using Stata append missing variable append using newdata using " merge merge recid using ds2 recid ds2 merge merge merge drop merge keep save use keep save use merge merge rename var 13

14 8 ttest, by(variables) Help search Reference Manual Reference Manual 8.1 OLS duration i = β 0 + β 1 gender + β 2 inc700d + ε i Gauss-Markov β 0,β 1,β 2 BLUE 1 1. y i = β 1 x i1 + β 2 x i2 + + β K x ik + ε i 2. E[ε i X] =E[ε i x 1,x 2,..., x n ]=0 3. n K K 4. E[ε 2 i x 1,x 2,..., x n ] = σ 2 > 0 (i =1, 2,..., n) E[ε i ε j x 1,x 2,..., x n ] = 0 (i j) OLS b =(X X) 1 X y β 1. unbiasedness 12 E[b X] =β 2. Var(b X) =σ 2 (X X)

15 3. BLUE : Best Linear Unbiased Estimator b efficient 4. cov(b, e X) =cov(b, (y Xb) X) =0 5. E[e e/(n K) X] =σ 2 OLS Stata OLS reg reg duration gender inc700d duration reg nocons reg duration gender inc700d, nocons White reg duration gender inc700d, robust Davidson and MacKinnon (1993, pp ) 13 hc2 hc3 1 Cochrane-Orcutt prais corc Gauss-Markov k 1 14 t Y 1 = β 1 + β 2 X 21 + β 3 X β k X k1 + u 1 Y 2 = β 2 + β 2 X 22 + β 3 X β k X k2 + u 2. (1). Y t = β 1 + β 2 X 2t + β 3 X 3t + + β k X kt + u t 13 Davidson, Russell and James G. MacKinnon Estimation and Inference in Econometrics. Oxford University Press

16 k Y 1 1 X 21 X 31 X k1 β 1 u 1 Y 2 y =., X = 1 X 22 X 32 X k ,β = β 2., u = u 2 (2). Y t 1 X 2t X 3t X kt β k u t y = Xβ + u (3) y t 1 X t k β k 1 u t 1 Xβ 15 t 1 1 Y 1 = β 1 + β 2 X 21 + β 3 X β k X k1 + u 1 (4) 3 X u β u y 3 u β 2 u 2 β 3 2 u u = y Xβ (5) 2 [ u u u2 t = u u = ] u 1 u 2 u t u 1 u 2.. (6) u t 16 u u =(y Xβ) (y Xβ) (7) u u T 16

17 17 u u =(y (Xβ) )(y Xβ) (8) 18 u u =(y β X )(y Xβ) (9) 19 u u = y y y Xβ β X y β X Xβ (10) 3 β X y u u = y y y Xβ y Xβ β X Xβ (11) 2 3 u u = y y 2y Xβ β X Xβ (12) β b e = y Xb e e β 2 b b b 20 b b f(x) (x 1,x 2,,x k ) 21 x =(x 1,x 2,,x k ) f x 1 f f x = x 2. f x k f(x) (x 1,x 2,,x k ) x 1 [ ] x 2 f(x) =a x = a 1 a 2 a k. x k (a + b)(c + d) =ac + ad + bc + bd (13) (14) 17

18 a 1 f x = a 2. = a (15) a k (a x) x = a (16) 2 A 22 (x Ax) x =2Ax (17) u u = y y 2y Xβ β X Xβ (18) β 2 b 23 (u u) b = 2y X +2X Xb = 0 (19) 2 X Xb = X y (20) b X Xb = X y (21) X X 1 X OLS X X OLS b =(X X) 1 X y (22) 22 X X X 23 18

19 OLS β b β =(X X) 1 X y β (23) y Xβ + u b β =(X X) 1 X (Xβ + u) β (24) b β =(X X) 1 (X X)β +(X X) 1 X u β (25) X 1 X = I b β = β +(X X) 1 X u β (26) b β =(X X) 1 X u (27) sampling error E[b β] =E[(X X) 1 X u] (28) 24 E[b] β =(X X) 1 X E[u] (29) u E[b] =β (30) OLS OLS b 25 var(b) = var(b β) (31) sampling error var(b) = var((x X) 1 X u) (32) A x var(ax) =Avar(x)A (33) 24 OLS b β 25 k k k 19

20 26 var(b) =(X X) 1 X var(u)((x X) 1 X ) (34) u var(u) =E(uu ) (35) var(b) =(X X) 1 X E(uu )((X X) 1 X ) (36) σ 2 var(b) =(X X) 1 X (σ 2 I n )((X X) 1 X ) (37) σ 2 var(b) =σ 2 (X X) 1 X ((X X) 1 X ) (38) 27 var(b) =σ 2 (X X) 1 X X(X X) 1 = σ 2 (X X) 1 (39) 2 OLS 3 OLS σ 2 (X X) 1 2 OLS Gauss-Markov OLS e OLS b 8.2 IV GMM: Generalized Method of Moments Hayashi 2000, pp y i = δ 1 z 1i + δ 2 z 2i + + δ L z Li + ε i (AB) 1 = B 1 A 1 ABB 1 A 1 = I 28 Hayashi, Fumio Econometrics. Princeton University Press. 20

21 δ 1,δ 2,,δ L L z 1i,z 2i,,z Li ε i K x 1i,x 2i,,x Ki IV: Instrumental Variables x 1i 0 x 2i E. ε i = 0. x Ki 0 ε i ε i = y i δ 1 z 1i δ 2 z 2i δ L z Li x 1i 0 x 2i E. [y i δ 1 z 1i δ 2 z 2i δ L z Li ] = 0. x Ki 0 x 1i (y i δ 1 z 1i δ 2 z 2i δ L z Li ) x 2i (y i δ 1 z 1i δ 2 z 2i δ L z Li ) E.. x Ki (y i δ 1 z 1i δ 2 z 2i δ L z Li ) = orthogonality condition x ki,z li,y i (δ 1,δ 2,,δ L ) L K = = K<L Not identified Just identified 1 Over identified Over identified GMM Hansen J Hansen s J-statistic Hayashi 2000, pp specification test 1 GMM order condition IV OLS GMM OLS 21

22 29 excluded variables excluded restrictions OLS rank condition conditional homoskedasticity efficient GMM 2 2SLS Hayashi pp SLS OLS 1 ẑ li predicted values, fitted values 2 2 y i ẑ iˆδ yi z iˆδ 2SLS GMM 1 GMM 2SLS Stata ivreg ivreg ( = ) White OLS robust nocons 1 first 2SLS consistency finite-sample weak instruments ; Hayashi 2000, p.229, Staiger and Stock F R 2 ado GMM ivgmm0 ( = ) 8.3 Probit Stata 29 Wooldridge 2001, pp simultaneity omitted variables measurement error 30 Staiger, D. and J. Stock Instrumental variables regression with weak instruments. Econometrica 65,

23 Yes No latent variable x i y i yi yi = β 0 + β 1 x i + ε i β 0,β 1 ε i N(0,σ 2 ) y i =1 y i =0 y > 0 y 0 P (y i =1) = Pr(y > 0) = Pr(β 0 + β 1 x i + ε i > 0) = Pr(ε i > (β 0 + β 1 x i )) (40) ε i N(0,σ 2 ) Φ(z) ( ) β0 + β 1 x i P (y i =1)=Pr(ε i <β 0 + β 1 x i )=Φ (41) σ P (y i =0) = Pr(y 0) = Pr(β 0 + β 1 x i + ε i 0) = Pr(ε i (β 0 + β 1 x i )) (42) ε i N(0,σ 2 ) P (y i =0) = Pr(ε i (β 0 + β 1 x i )) ( = Φ β ) ( ) 0 + β 1 x i β0 + β 1 x i =1 Φ σ σ (43) 23

24 L n [ ( )] y β0 + β 1 x [ ( )] i 1 y i β0 i + β 1 x i L = Φ 1 Φ σ σ i=1 n ( )] [ ( )] ln L = yi [Φ ln β0 + β 1 x i +(1 y i σ )ln β0 + β 1 x i 1 Φ σ i=1 b 0,b 1 σ σ =1 b 0,b 1 P (y i =1)=Φ(b 0 + b 1 x i ) b 0,b 1 1 P (y i =1) x x P (y i =1)=φ (b 0 + b 1 x) b 1 P (y i =1) P (y i =1)

25 probit logit probit dprobit oprobit depvar variables 8.4 Heckman 2 Heckman 2 y i x i u i y i = β x i + u i y i π z i + ε i 0 z i π ε i ε i σε 2 u i σ uε ε i u i 2 ( ) [( ) ( )] ui 0 σ 2 = N, u σ uε. 0 ε i σ uε σ 2 ε y i Gauss-Markov E[y i x i,z i,π z i + ε i 0] = β x i + E[u i ε i π z i ] η i π z i + ε i 0 y i = β x i + E[u i ε i π z i ]+η i. E[u i ε i π z i ] ε i u i Choleski decomposition Greene 1997, p.44, p.179 ( ) ( )( ) σε 2 σ uε σ ε 0 σ ε σ uε /σ ε = σ uε σ uε /σ ε σ u 0 σ u σ 2 u 25

26 N(0, 1) x 1,x 2 ε i u i ( ) ( ) ( )( ε i 0 σ ε 0 = + u i 0 σ uε /σ ε σ u x 1 x 2 [ ] E[u i ε i π σ uε z i ] = E x 1 + σ u x 2 σ ε σ εx 1 π z i [ ] = σ uε σ ε E x 1 x 1 π z i σ ε ) ( ) σ ε x 1 = (σ uε /σ ε )x 1 + σ u x 2 φ( ) Φ( ) φ (m) = mφ(m), φ(m) =φ( m) E[u i ε i < π z i ] = σ uε σ ε π z i σε = σ uε σ ε 1 Φ(π z i /σ ε ) = σ uε σ ε 1 Φ(π z i /σ ε ) = σ uε σ ε 1 Φ(π z i /σ ε ) φ = λ φ (π z i /σ ε ) Φ(π z i /σ ε ) x 1 φ(x 1 ) 1 Φ( π z i /σ ε ) dx 1 π z i σε π z i σε ( π ) z i σ ε x 1 φ(x 1 ) dx 1 φ (x 1 ) dx 1 λ = σ uε /σ ε y i = β x i + λ φ (π z i /σ ε ) Φ(π z i /σ ε ) + η i η i well-behaved Heckman Heckit Probit π π φ(π z i /σ ε )/Φ(π z i /σ ε ) Inverse Mill s Ratio OLS Type 2 Tobit Type 5 Tobit Amemiya 1995 y i = β x i + u i β = β 1 if P i = π z i + ε i < 0 β = β 2 if P i = π z i + ε i 0 26

27 P i β switching regression P i self-selection model P i Heckman 2 heckman, select( ) x i z i heckman Heckman 2 twostep select( ) random effect model xtdes, i( ) t( ) xtsum, i( ) t( ) xtreg depvar variables, fe i( ) xtreg depvar variables, re i( ) xthaus Hausman xtivreg 32 xtivreg strict exogeneity 33 xtivreg GLS random-effect model Between-effects 31 Stata 8 Reference Cross-Sectional Time-Series 32 Stata 8 33 Baltagi, Badi H Econometric Analysis of Panel Data 2nd edition. John Wiley and Sons. Wooldridge, Jeffrey M Econometric Analysis of Cross Section and Panel Data. MIT Press

28 model Fixed-effects model First-differenced estimator 4 xtivreg ( = ), re be fe fd Firstdifferenced estimator xtreg i( ) First-differenced estimator tsset first 1 GLS random-effect model Baltagi EC2SLS Arellano and Bond (1991, RES) xtabond Amemiya and McCurdy (1986, Econometrica) Hausman and Taylor (1981, Econometrica) xthtaylor xtlogit xtprobit Stata 8 tsset 8.6 durac faildoc Stata stset durac, failure( faildoc) Cox stcox gender hcon2-hcon6 inc700d copay2-copay7 streg gender hcon2-hcon6 inc700d copay2-copay7, d(weibull) Kaplan-Meier sts graph sts graph, na 28

29 8.7 (1) (2) (3) (4) Density Estimation i.i.d., identically and independently distributed X f(x) f(x) smooth h>0 2h f(x) = x+h x h f(u) du = Pr(X [x h, x + h]) x f(x) 34 ˆf h (X) ˆf h (x) = 1 Pr(X [x h, x + h]) 2h Pr(X [x h, x+h]) X [x h, x+h] 2h [x h, x + h] N Indicator function I ˆf h (x) = 1 1 2h N = 1 N N I( X i x h) i=1 N 1 1 h 2 I( X i x /h 1) = 1 N i=1 N i=1 1 h K((x X i)/h) = 1 N N K h (x X i ) kernel K(u) = 1 2I( u 1) bindwidth h f(x) kernel density estimator kernel step function kernel [x h, x + h] x kernel window 34 i=1 29

30 function K kernel Gaussian kernel K(u) =(2π) 1/2 exp( u 2 /2) kernel piecewise continuous kernel K(u) K(u) =K( u), K(u) du =1 kdensity, kernel Kernel Gaussian kernel triangle kernel Kernel generate(, ) Regression Estimation 1 2 m(x) =E(Y X = x) (X, Y ) f(x, y) yf(x, y) dy m(x) =E(Y X = x) = f(x, y) dy kernel density estimator ˆf h (x, y) = 1 N K h (x X i )K h (y Y i ) N i=1 y kernel 1 N ˆf h (x, y) dy = K h (x X i )K h (y Y i ) dy N i=1 = 1 N K h (x X i ) K h (y Y i ) dy = 1 N N y ˆf h (x, y) dy = = 1 N i=1 1 N i=1 N Y i K h (x X i )K h (y Y i ) dy i=1 N K h (x X i )Y i K h (y Y i ) dy = 1 N 30 N K h (x X i ) i=1 N K h (x X i )Y i i=1

31 y 1 N ˆfh (x, y) dy ˆm h (x) = ˆfh (x, y) dy = N i=1 K h(x X i )Y i 1 N N i=1 K h(x X i ) Nadaraya-Watson kernel estimate Nadaraya-Watson kernel estimate kernreg Y X, bwidth( ) kercode( ) npoint( ) bwidth smoothing parameter kernel kercode kernel 1 7 npoint 9 t 9.1 Stata b[ ] b[ cons] generate, replace predicted value, fitted value predict, xb predict post estimation command stdp xb e(sample) 31

32 predict if e(sample), xb 9.2 F χ 2 Stata b[ ] hours i = β 0 + β 1 lnw i + β 2 asset i + ε i β 1 = β 2 Stata test test OLS F reg hours lnw asset test _b[lnw] = _b[asset] test _b[lnw] + _b[asset] = 1 display reg hours lnw asset display _b[lnw] + _b[asset] test _b[lnw] + _b[asset] = 1 accumulate β 1 =0.5 test _b[lnw] + _b[asset] = 1 test _b[lnw] = 0.5, accumulate 2 accumulate 32

33 9.3 test Non-Linear testnl test test testnl exp(β 0 /β 1 ) =0.3 display 1/[1+exp(_b[_cons]/_b[lnw])] testnl 1/[1+exp(_b[_cons]/_b[lnw])] =0.3 Wald 2 ( ) program define end program define nl version 6.0 if " 1 " == "?" { global S_1 " " exit } replace 1 = end nl nl 33

34 ( 1 α hours i = ɛ ln α w i ) + u i ɛ α w i hours i nlsbst program define nlsbst version 6.0 if " 1 " == "?" { global S_1 "alpha epsilon" global alpha = global epsilon = 0.4 exit } replace 1 = -$epsilon * ln((1-$alpha)*w/$alpha) end nl sbst hours 2 replace $ 2 b[w] 10.2 Stata Stata random effect Stata lf, d0, d1, d2 4 lf lf 34

35 2 lf program define args lnf theta1 theta2... tempvar quietly replace lnf =... end ml model lf ( = )... ml check ml maximize lnf program quietly replace lnf = theta1, theta2,... theta $ML y1, $ML y2,... = Stata Gould and Sribney 1999, Weibull ln f i =(t i exp(x i β)) exp(s) + d i (s x i β + (exp(s) 1)(ln t i x i β)) β Weibull s t i,d i x i β theta1 s theta2 t i d i Stata s exp(s) 35 Gould, William and William Sribney Maximum likelihood estimation with STATA. Stata Press, Texas. 35

36 p 1 M ln t i x i β R Stata program define myweib version 6.0 args lnf theta1 theta2 tempvar p M R quietly generate double p = exp( theta2 ) quietly generate double M = ($ML_y1*exp(- theta1 ))^ p quietly generate double R = ln($ml_y1)- theta1 quietly replace lnf = - M +$ML_y2*( theta2 - theta1 +( p -1)* R ) end generate, replace quietly double t i time d i died x i age ml model lf myweib (time died = age) () 2 theta2 ml model lf myweib (timeeq: time died = age) (sigma: ) $ML y1, $ML y2,..., theta1, theta2,..., = ml model lf myweib (timeeq: time died = age, nocons) (sigma: ) ml check ml maximize 36

37 11 Stata Reference Manual 37

2 Tobin (1958) 2 limited dependent variables: LDV 2 corner solution 2 truncated censored x top coding censor from above censor from below 2 Heck

2 Tobin (1958) 2 limited dependent variables: LDV 2 corner solution 2 truncated censored x top coding censor from above censor from below 2 Heck 10 2 1 2007 4 6 25-44 57% 2017 71% 2 Heckit 6 1 2 Tobin (1958) 2 limited dependent variables: LDV 2 corner solution 2 truncated 50 50 censored x top coding censor from above censor from below 2 Heckit

More information

4.9 Hausman Test Time Fixed Effects Model vs Time Random Effects Model Two-way Fixed Effects Model

4.9 Hausman Test Time Fixed Effects Model vs Time Random Effects Model Two-way Fixed Effects Model 1 EViews 5 2007 7 11 2010 5 17 1 ( ) 3 1.1........................................... 4 1.2................................... 9 2 11 3 14 3.1 Pooled OLS.............................................. 14

More information

80 X 1, X 2,, X n ( λ ) λ P(X = x) = f (x; λ) = λx e λ, x = 0, 1, 2, x! l(λ) = n f (x i ; λ) = i=1 i=1 n λ x i e λ i=1 x i! = λ n i=1 x i e nλ n i=1 x

80 X 1, X 2,, X n ( λ ) λ P(X = x) = f (x; λ) = λx e λ, x = 0, 1, 2, x! l(λ) = n f (x i ; λ) = i=1 i=1 n λ x i e λ i=1 x i! = λ n i=1 x i e nλ n i=1 x 80 X 1, X 2,, X n ( λ ) λ P(X = x) = f (x; λ) = λx e λ, x = 0, 1, 2, x! l(λ) = n f (x i ; λ) = n λ x i e λ x i! = λ n x i e nλ n x i! n n log l(λ) = log(λ) x i nλ log( x i!) log l(λ) λ = 1 λ n x i n =

More information

最小2乗法

最小2乗法 2 2012 4 ( ) 2 2012 4 1 / 42 X Y Y = f (X ; Z) linear regression model X Y slope X 1 Y (X, Y ) 1 (X, Y ) ( ) 2 2012 4 2 / 42 1 β = β = β (4.2) = β 0 + β (4.3) ( ) 2 2012 4 3 / 42 = β 0 + β + (4.4) ( )

More information

2 1,2, , 2 ( ) (1) (2) (3) (4) Cameron and Trivedi(1998) , (1987) (1982) Agresti(2003)

2 1,2, , 2 ( ) (1) (2) (3) (4) Cameron and Trivedi(1998) , (1987) (1982) Agresti(2003) 3 1 1 1 2 1 2 1,2,3 1 0 50 3000, 2 ( ) 1 3 1 0 4 3 (1) (2) (3) (4) 1 1 1 2 3 Cameron and Trivedi(1998) 4 1974, (1987) (1982) Agresti(2003) 3 (1)-(4) AAA, AA+,A (1) (2) (3) (4) (5) (1)-(5) 1 2 5 3 5 (DI)

More information

第13回:交差項を含む回帰・弾力性の推定

第13回:交差項を含む回帰・弾力性の推定 13 2018 7 27 1 / 31 1. 2. 2 / 31 y i = β 0 + β X x i + β Z z i + β XZ x i z i + u i, E(u i x i, z i ) = 0, E(u i u j x i, z i ) = 0 (i j), V(u i x i, z i ) = σ 2, i = 1, 2,, n x i z i 1 3 / 31 y i = β

More information

.. est table TwoSLS1 TwoSLS2 GMM het,b(%9.5f) se Variable TwoSLS1 TwoSLS2 GMM_het hi_empunion totchr

.. est table TwoSLS1 TwoSLS2 GMM het,b(%9.5f) se Variable TwoSLS1 TwoSLS2 GMM_het hi_empunion totchr 3,. Cameron and Trivedi (2010) Microeconometrics Using Stata, Revised Edition, Stata Press 6 Linear instrumentalvariables regression 9 Linear panel-data models: Extensions.. GMM xtabond., GMM(Generalized

More information

AR(1) y t = φy t 1 + ɛ t, ɛ t N(0, σ 2 ) 1. Mean of y t given y t 1, y t 2, E(y t y t 1, y t 2, ) = φy t 1 2. Variance of y t given y t 1, y t

AR(1) y t = φy t 1 + ɛ t, ɛ t N(0, σ 2 ) 1. Mean of y t given y t 1, y t 2, E(y t y t 1, y t 2, ) = φy t 1 2. Variance of y t given y t 1, y t 87 6.1 AR(1) y t = φy t 1 + ɛ t, ɛ t N(0, σ 2 ) 1. Mean of y t given y t 1, y t 2, E(y t y t 1, y t 2, ) = φy t 1 2. Variance of y t given y t 1, y t 2, V(y t y t 1, y t 2, ) = σ 2 3. Thus, y t y t 1,

More information

(p.2 ( ) 1 2 ( ) Fisher, Ronald A.1932, 1971, 1973a, 1973b) treatment group controll group (error function) 2 (Legendre, Adrian

(p.2 ( ) 1 2 ( ) Fisher, Ronald A.1932, 1971, 1973a, 1973b) treatment group controll group (error function) 2 (Legendre, Adrian 2004 1 1 1.1 Maddala(1993) Mátyás and Sevestre (1996) Hsiao(2003) Baltagi(2001) Lee(2002) Woolridge(2002a), Arellano(2003) Journal of Econometrics Econometrica Greene(2000) Maddala(2001) Johnston and Di-

More information

2 fukui@econ.tohoku.ac.jp http://www.econ.tohoku.ac.jp/~fukui/site.htm 200 7 Cookbook-style . (Inference) (Population) (Sample) f(x = θ = θ ) (up to parameter values) (estimation) 2 3 (multicolinearity)

More information

y i OLS [0, 1] OLS x i = (1, x 1,i,, x k,i ) β = (β 0, β 1,, β k ) G ( x i β) 1 G i 1 π i π i P {y i = 1 x i } = G (

y i OLS [0, 1] OLS x i = (1, x 1,i,, x k,i ) β = (β 0, β 1,, β k ) G ( x i β) 1 G i 1 π i π i P {y i = 1 x i } = G ( 7 2 2008 7 10 1 2 2 1.1 2............................................. 2 1.2 2.......................................... 2 1.3 2........................................ 3 1.4................................................

More information

第11回:線形回帰モデルのOLS推定

第11回:線形回帰モデルのOLS推定 11 OLS 2018 7 13 1 / 45 1. 2. 3. 2 / 45 n 2 ((y 1, x 1 ), (y 2, x 2 ),, (y n, x n )) linear regression model y i = β 0 + β 1 x i + u i, E(u i x i ) = 0, E(u i u j x i ) = 0 (i j), V(u i x i ) = σ 2, i

More information

( 30 ) 30 4 5 1 4 1.1............................................... 4 1.............................................. 4 1..1.................................. 4 1.......................................

More information

% 10%, 35%( 1029 ) p (a) 1 p 95% (b) 1 Std. Err. (c) p 40% 5% (d) p 1: STATA (1). prtesti One-sample test of pr

% 10%, 35%( 1029 ) p (a) 1 p 95% (b) 1 Std. Err. (c) p 40% 5% (d) p 1: STATA (1). prtesti One-sample test of pr 1 1. 2014 6 2014 6 10 10% 10%, 35%( 1029 ) p (a) 1 p 95% (b) 1 Std. Err. (c) p 40% 5% (d) p 1: STATA (1). prtesti 1029 0.35 0.40 One-sample test of proportion x: Number of obs = 1029 Variable Mean Std.

More information

4 OLS 4 OLS 4.1 nurseries dual c dual i = c + βnurseries i + ε i (1) 1. OLS Workfile Quick - Estimate Equation OK Equation specification dual c nurser

4 OLS 4 OLS 4.1 nurseries dual c dual i = c + βnurseries i + ε i (1) 1. OLS Workfile Quick - Estimate Equation OK Equation specification dual c nurser 1 EViews 2 2007/5/17 2007/5/21 4 OLS 2 4.1.............................................. 2 4.2................................................ 9 4.3.............................................. 11 4.4

More information

1 Stata SEM LightStone 4 SEM 4.. Alan C. Acock, Discovering Structural Equation Modeling Using Stata, Revised Edition, Stata Press 3.

1 Stata SEM LightStone 4 SEM 4.. Alan C. Acock, Discovering Structural Equation Modeling Using Stata, Revised Edition, Stata Press 3. 1 Stata SEM LightStone 4 SEM 4.. Alan C. Acock, 2013. Discovering Structural Equation Modeling Using Stata, Revised Edition, Stata Press 3. 2 4, 2. 1 2 2 Depress Conservative. 3., 3,. SES66 Alien67 Alien71,

More information

28

28 y i = Z i δ i +ε i ε i δ X y i = X Z i δ i + X ε i [ ] 1 δ ˆ i = Z i X( X X) 1 X Z i [ ] 1 σ ˆ 2 Z i X( X X) 1 X Z i Z i X( X X) 1 X y i σ ˆ 2 ˆ σ 2 = [ ] y i Z ˆ [ i δ i ] 1 y N p i Z i δ ˆ i i RSTAT

More information

ECCS. ECCS,. ( 2. Mac Do-file Editor. Mac Do-file Editor Windows Do-file Editor Top Do-file e

ECCS. ECCS,. (  2. Mac Do-file Editor. Mac Do-file Editor Windows Do-file Editor Top Do-file e 1 1 2015 4 6 1. ECCS. ECCS,. (https://ras.ecc.u-tokyo.ac.jp/guacamole/) 2. Mac Do-file Editor. Mac Do-file Editor Windows Do-file Editor Top Do-file editor, Do View Do-file Editor Execute(do). 3. Mac System

More information

1 4 1 ( ) ( ) ( ) ( ) () 1 4 2

1 4 1 ( ) ( ) ( ) ( ) () 1 4 2 7 1995, 2017 7 21 1 2 2 3 3 4 4 6 (1).................................... 6 (2)..................................... 6 (3) t................. 9 5 11 (1)......................................... 11 (2)

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

A B P (A B) = P (A)P (B) (3) A B A B P (B A) A B A B P (A B) = P (B A)P (A) (4) P (B A) = P (A B) P (A) (5) P (A B) P (B A) P (A B) A B P

A B P (A B) = P (A)P (B) (3) A B A B P (B A) A B A B P (A B) = P (B A)P (A) (4) P (B A) = P (A B) P (A) (5) P (A B) P (B A) P (A B) A B P 1 1.1 (population) (sample) (event) (trial) Ω () 1 1 Ω 1.2 P 1. A A P (A) 0 1 0 P (A) 1 (1) 2. P 1 P 0 1 6 1 1 6 0 3. A B P (A B) = P (A) + P (B) (2) A B A B A 1 B 2 A B 1 2 1 2 1 1 2 2 3 1.3 A B P (A

More information

1 I EViews View Proc Freeze

1 I EViews View Proc Freeze EViews 2017 9 6 1 I EViews 4 1 5 2 10 3 13 4 16 4.1 View.......................................... 17 4.2 Proc.......................................... 22 4.3 Freeze & Name....................................

More information

Stata 11 Stata ts (ARMA) ARCH/GARCH whitepaper mwp 3 mwp-083 arch ARCH 11 mwp-051 arch postestimation 27 mwp-056 arima ARMA 35 mwp-003 arima postestim

Stata 11 Stata ts (ARMA) ARCH/GARCH whitepaper mwp 3 mwp-083 arch ARCH 11 mwp-051 arch postestimation 27 mwp-056 arima ARMA 35 mwp-003 arima postestim TS001 Stata 11 Stata ts (ARMA) ARCH/GARCH whitepaper mwp 3 mwp-083 arch ARCH 11 mwp-051 arch postestimation 27 mwp-056 arima ARMA 35 mwp-003 arima postestimation 49 mwp-055 corrgram/ac/pac 56 mwp-009 dfgls

More information

一般化線形 (混合) モデル (2) - ロジスティック回帰と GLMM

一般化線形 (混合) モデル (2) - ロジスティック回帰と GLMM .. ( ) (2) GLMM kubo@ees.hokudai.ac.jp I http://goo.gl/rrhzey 2013 08 27 : 2013 08 27 08:29 kubostat2013ou2 (http://goo.gl/rrhzey) ( ) (2) 2013 08 27 1 / 74 I.1 N k.2 binomial distribution logit link function.3.4!

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!

!!! 2! 2016/5/17 (Tue) SPSS (mugiyama@l.u-tokyo.ac.jp)! !!! 2! 3! 4! !!! 5! (Population)! (Sample) 6! case, observation, individual! variable!!! 1 1 4 2 5 2 1 5 3 4 3 2 3 3 1 4 2 1 4 8 7! (1) (2) (3) (4) categorical

More information

1 y x y = α + x β+ε (1) x y (2) x y (1) (2) (1) y (2) x y (1) (2) y x y ε x 12 x y 3 3 β x β x 1 1 β 3 1

1 y x y = α + x β+ε (1) x y (2) x y (1) (2) (1) y (2) x y (1) (2) y x y ε x 12 x y 3 3 β x β x 1 1 β 3 1 1 y x y = α + x β+ε (1) x y (2) x y (1) (2) (1) y (2) x y (1) (2) y x y ε x 12 x y 3 3 β x β x 1 1 β 3 1 2 2 N y(n 1 ) x(n K ) y = E(y x) + u E(y x) y u(n 1 ) y = x β + u β Ordinary Least Squares:OLS (min

More information

わが国企業による資金調達方法の選択問題

わが国企業による資金調達方法の選択問題 * takeshi.shimatani@boj.or.jp ** kawai@ml.me.titech.ac.jp *** naohiko.baba@boj.or.jp No.05-J-3 2005 3 103-8660 30 No.05-J-3 2005 3 1990 * E-mailtakeshi.shimatani@boj.or.jp ** E-mailkawai@ml.me.titech.ac.jp

More information

4 2 p = p(t, g) (1) r = r(t, g) (2) p r t g p r dp dt = p dg t + p g (3) dt dr dt = r dg t + r g dt 3 p t p g dt p t 3 2 4 r t = 3 4 2 Benefit view dp

4 2 p = p(t, g) (1) r = r(t, g) (2) p r t g p r dp dt = p dg t + p g (3) dt dr dt = r dg t + r g dt 3 p t p g dt p t 3 2 4 r t = 3 4 2 Benefit view dp ( ) 62 1 1 47 2 3 47 2 e-mail:miyazaki@ngu.ac.jp 1 2000 2005 1 4 2 p = p(t, g) (1) r = r(t, g) (2) p r t g p r dp dt = p dg t + p g (3) dt dr dt = r dg t + r g dt 3 p t p g dt p t 3 2 4 r t = 3 4 2 Benefit

More information

フィナンシャルレビュー 第80号

フィナンシャルレビュー 第80号 March Eichner et al. Tobit Tobit Buntin and Zaslavsk Duan et al.hay and Olsen Mullahy Tobit ARMA Feenberg and Skinner French and Jones Eichner et al. Eichner et al i t m i,t Em i,t Prm i,t!prm i,t Em i,t

More information

201711grade1ouyou.pdf

201711grade1ouyou.pdf 2017 11 26 1 2 52 3 12 13 22 23 32 33 42 3 5 3 4 90 5 6 A 1 2 Web Web 3 4 1 2... 5 6 7 7 44 8 9 1 2 3 1 p p >2 2 A 1 2 0.6 0.4 0.52... (a) 0.6 0.4...... B 1 2 0.8-0.2 0.52..... (b) 0.6 0.52.... 1 A B 2

More information

Stata11 whitepapers mwp-037 regress - regress regress. regress mpg weight foreign Source SS df MS Number of obs = 74 F(

Stata11 whitepapers mwp-037 regress - regress regress. regress mpg weight foreign Source SS df MS Number of obs = 74 F( mwp-037 regress - regress 1. 1.1 1.2 1.3 2. 3. 4. 5. 1. regress. regress mpg weight foreign Source SS df MS Number of obs = 74 F( 2, 71) = 69.75 Model 1619.2877 2 809.643849 Prob > F = 0.0000 Residual

More information

tokei01.dvi

tokei01.dvi 2. :,,,. :.... Apr. - Jul., 26FY Dept. of Mechanical Engineering, Saga Univ., JAPAN 4 3. (probability),, 1. : : n, α A, A a/n. :, p, p Apr. - Jul., 26FY Dept. of Mechanical Engineering, Saga Univ., JAPAN

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

Stata User Group Meeting in Kyoto / ( / ) Stata User Group Meeting in Kyoto / 21

Stata User Group Meeting in Kyoto / ( / ) Stata User Group Meeting in Kyoto / 21 Stata User Group Meeting in Kyoto / 2017 9 16 ( / ) Stata User Group Meeting in Kyoto 2017 9 16 1 / 21 Rosenbaum and Rubin (1983) logit/probit, ATE = E [Y 1 Y 0 ] ( / ) Stata User Group Meeting in Kyoto

More information

Law and Economics Review vol.4,no.1(february 2009) 1998

Law and Economics Review vol.4,no.1(february 2009) 1998 Law and Economics Review vol.4,no.1(february 2009) 1998 1 500 No.93 1999114 2 195072119885021 19901991 3 Foreign Investment and National Security Act of 200720071024effective 1986 CFIUS2008831CFIUS web

More information

seminar0220a.dvi

seminar0220a.dvi 1 Hi-Stat 2 16 2 20 16:30-18:00 2 2 217 1 COE 4 COE RA E-MAIL: ged0104@srv.cc.hit-u.ac.jp 2004 2 25 S-PLUS S-PLUS S-PLUS S-code 2 [8] [8] [8] 1 2 ARFIMA(p, d, q) FI(d) φ(l)(1 L) d x t = θ(l)ε t ({ε t }

More information

X X X Y R Y R Y R MCAR MAR MNAR Figure 1: MCAR, MAR, MNAR Y R X 1.2 Missing At Random (MAR) MAR MCAR MCAR Y X X Y MCAR 2 1 R X Y Table 1 3 IQ MCAR Y I

X X X Y R Y R Y R MCAR MAR MNAR Figure 1: MCAR, MAR, MNAR Y R X 1.2 Missing At Random (MAR) MAR MCAR MCAR Y X X Y MCAR 2 1 R X Y Table 1 3 IQ MCAR Y I (missing data analysis) - - 1/16/2011 (missing data, missing value) (list-wise deletion) (pair-wise deletion) (full information maximum likelihood method, FIML) (multiple imputation method) 1 missing completely

More information

10:30 12:00 P.G. vs vs vs 2

10:30 12:00 P.G. vs vs vs 2 1 10:30 12:00 P.G. vs vs vs 2 LOGIT PROBIT TOBIT mean median mode CV 3 4 5 0.5 1000 6 45 7 P(A B) = P(A) + P(B) - P(A B) P(B A)=P(A B)/P(A) P(A B)=P(B A) P(A) P(A B) P(A) P(B A) P(B) P(A B) P(A) P(B) P(B

More information

Microsoft Word - 計量研修テキスト_第5版).doc

Microsoft Word - 計量研修テキスト_第5版).doc Q10-2 テキスト P191 1. 記述統計量 ( 変数 :YY95) 表示変数として 平均 中央値 最大値 最小値 標準偏差 観測値 を選択 A. 都道府県別 Descriptive Statistics for YY95 Categorized by values of PREFNUM Date: 05/11/06 Time: 14:36 Sample: 1990 2002 Included

More information

Ishi

Ishi Ishi HPhttp: // www.mof.go.jp / jouhou / syuzei / siryou /.htm.. or ERTA, TRA ERTA Economic Recovery Tax Act TRA Tax Reform Act Mroz Triest Lindsey Burtless Navrati Lindsey Burtless Navrati CPS Current

More information

Hsiao (2003, 6 ) Maddala, Li, Trost and Joutz (1997) Hsiao and Pesaran (2004) 4.2 y it = γy it 1 + x itβ + ε it i = 1, 2,..., N t = 1, 2,...T (

Hsiao (2003, 6 ) Maddala, Li, Trost and Joutz (1997) Hsiao and Pesaran (2004) 4.2 y it = γy it 1 + x itβ + ε it i = 1, 2,..., N t = 1, 2,...T ( 2004 1 4 4.1 Balestra and Nerlove (1966) 1960 1980 (GMM) Arellano and Bond (1991) Arellano (2003) N T N T Smith and Fuerter (2004) 1 (the random coefficient model) 1 1995 2001 Singer and Willett (2003

More information

,, Poisson 3 3. t t y,, y n Nµ, σ 2 y i µ + ɛ i ɛ i N0, σ 2 E[y i ] µ * i y i x i y i α + βx i + ɛ i ɛ i N0, σ 2, α, β *3 y i E[y i ] α + βx i

,, Poisson 3 3. t t y,, y n Nµ, σ 2 y i µ + ɛ i ɛ i N0, σ 2 E[y i ] µ * i y i x i y i α + βx i + ɛ i ɛ i N0, σ 2, α, β *3 y i E[y i ] α + βx i Armitage.? SAS.2 µ, µ 2, µ 3 a, a 2, a 3 a µ + a 2 µ 2 + a 3 µ 3 µ, µ 2, µ 3 µ, µ 2, µ 3 log a, a 2, a 3 a µ + a 2 µ 2 + a 3 µ 3 µ, µ 2, µ 3 * 2 2. y t y y y Poisson y * ,, Poisson 3 3. t t y,, y n Nµ,

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

Rによる計量分析:データ解析と可視化 - 第3回 Rの基礎とデータ操作・管理

Rによる計量分析:データ解析と可視化 - 第3回  Rの基礎とデータ操作・管理 R 3 R 2017 Email: gito@eco.u-toyama.ac.jp October 23, 2017 (Toyama/NIHU) R ( 3 ) October 23, 2017 1 / 34 Agenda 1 2 3 4 R 5 RStudio (Toyama/NIHU) R ( 3 ) October 23, 2017 2 / 34 10/30 (Mon.) 12/11 (Mon.)

More information

chap10.dvi

chap10.dvi . q {y j } I( ( L y j =Δy j = u j = C l ε j l = C(L ε j, {ε j } i.i.d.(,i q ( l= y O p ( {u j } q {C l } A l C l

More information

9 8 7 (x-1.0)*(x-1.0) *(x-1.0) (a) f(a) (b) f(a) Figure 1: f(a) a =1.0 (1) a 1.0 f(1.0)

9 8 7 (x-1.0)*(x-1.0) *(x-1.0) (a) f(a) (b) f(a) Figure 1: f(a) a =1.0 (1) a 1.0 f(1.0) E-mail: takio-kurita@aist.go.jp 1 ( ) CPU ( ) 2 1. a f(a) =(a 1.0) 2 (1) a ( ) 1(a) f(a) a (1) a f(a) a =2(a 1.0) (2) 2 0 a f(a) a =2(a 1.0) = 0 (3) 1 9 8 7 (x-1.0)*(x-1.0) 6 4 2.0*(x-1.0) 6 2 5 4 0 3-2

More information

Preliminary Version Manning et al. (1986) Rand Health Insurance Experiment Manning et al. (1986) 3 Medicare Me

Preliminary Version Manning et al. (1986) Rand Health Insurance Experiment Manning et al. (1986) 3 Medicare Me Preliminary Version. 600 * 14530029 12-1- Preliminary Version. 1 70 1 1997 9 1020 70 1 3 2 70 1 Manning et al. (1986) Rand Health Insurance Experiment 25 50 Manning et al. (1986) 3 Medicare Medicare Medicare

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

solutionJIS.dvi

solutionJIS.dvi May 0, 006 6 morimune@econ.kyoto-u.ac.jp /9/005 (7 0/5/006 1 1.1 (a) (b) (c) c + c + + c = nc (x 1 x)+(x x)+ +(x n x) =(x 1 + x + + x n ) nx = nx nx =0 c(x 1 x)+c(x x)+ + c(x n x) =c (x i x) =0 y i (x

More information

2 H23 BioS (i) data d1; input group patno t sex censor; cards;

2 H23 BioS (i) data d1; input group patno t sex censor; cards; H BioS (i) data d1; input group patno t sex censor; cards; 0 1 0 0 0 0 1 0 1 1 0 4 4 0 1 0 5 5 1 1 0 6 5 1 1 0 7 10 1 0 0 8 15 0 1 0 9 15 0 1 0 10 4 1 0 0 11 4 1 0 1 1 5 1 0 1 1 7 0 1 1 14 8 1 0 1 15 8

More information

9 1 (1) (2) (3) (4) (5) (1)-(5) (i) (i + 1) 4 (1) (2) (3) (4) (5) (1)-(2) (1)-(5) (5) 1

9 1 (1) (2) (3) (4) (5) (1)-(5) (i) (i + 1) 4 (1) (2) (3) (4) (5) (1)-(2) (1)-(5) (5) 1 9 1 (1) (2) (3) (4) (5) (1)-(5) (i) (i + 1) 4 (1) (2) (3) (4) (5) (1)-(2) (1)-(5) (5) 1 2 2 y i = 1, 2, 3,...J (1 < 2 < 3

More information

<4D F736F F D20939D8C7689F090CD985F93C18EEA8D758B E646F63>

<4D F736F F D20939D8C7689F090CD985F93C18EEA8D758B E646F63> Gretl OLS omitted variable omitted variable AIC,BIC a) gretl gretl sample file Greene greene8_3 Add Define new variable l_g_percapita=log(g/pop) Pg,Y,Pnc,Puc,Ppt,Pd,Pn,Ps Add logs of selected variables

More information

) ] [ h m x + y + + V x) φ = Eφ 1) z E = i h t 13) x << 1) N n n= = N N + 1) 14) N n n= = N N + 1)N + 1) 6 15) N n 3 n= = 1 4 N N + 1) 16) N n 4

) ] [ h m x + y + + V x) φ = Eφ 1) z E = i h t 13) x << 1) N n n= = N N + 1) 14) N n n= = N N + 1)N + 1) 6 15) N n 3 n= = 1 4 N N + 1) 16) N n 4 1. k λ ν ω T v p v g k = π λ ω = πν = π T v p = λν = ω k v g = dω dk 1) ) 3) 4). p = hk = h λ 5) E = hν = hω 6) h = h π 7) h =6.6618 1 34 J sec) hc=197.3 MeV fm = 197.3 kev pm= 197.3 ev nm = 1.97 1 3 ev

More information

untitled

untitled 2 : n =1, 2,, 10000 0.5125 0.51 0.5075 0.505 0.5025 0.5 0.4975 0.495 0 2000 4000 6000 8000 10000 2 weak law of large numbers 1. X 1,X 2,,X n 2. µ = E(X i ),i=1, 2,,n 3. σi 2 = V (X i ) σ 2,i=1, 2,,n ɛ>0

More information

J-LEAGUE 8000 V.Kawasaki Urawa.R 5000 J-LEAGUE

J-LEAGUE 8000 V.Kawasaki Urawa.R 5000 J-LEAGUE The Demand for J-League with Fixed Effect Tobit Model: Effects toward Community Formation Tomonori Ito and Yoichiro Higuchi The J-League was established in 993 expecting to encourage the community to form

More information

y = x 4 y = x 8 3 y = x 4 y = x 3. 4 f(x) = x y = f(x) 4 x =,, 3, 4, 5 5 f(x) f() = f() = 3 f(3) = 3 4 f(4) = 4 *3 S S = f() + f() + f(3) + f(4) () *4

y = x 4 y = x 8 3 y = x 4 y = x 3. 4 f(x) = x y = f(x) 4 x =,, 3, 4, 5 5 f(x) f() = f() = 3 f(3) = 3 4 f(4) = 4 *3 S S = f() + f() + f(3) + f(4) () *4 Simpson H4 BioS. Simpson 3 3 0 x. β α (β α)3 (x α)(x β)dx = () * * x * * ɛ δ y = x 4 y = x 8 3 y = x 4 y = x 3. 4 f(x) = x y = f(x) 4 x =,, 3, 4, 5 5 f(x) f() = f() = 3 f(3) = 3 4 f(4) = 4 *3 S S = f()

More information

「スウェーデン企業におけるワーク・ライフ・バランス調査 」報告書

「スウェーデン企業におけるワーク・ライフ・バランス調査 」報告書 1 2004 12 2005 4 5 100 25 3 1 76 2 Demoskop 2 2004 11 24 30 7 2 10 1 2005 1 31 2 4 5 2 3-1-1 3-1-1 Micromediabanken 2005 1 507 1000 55.0 2 77 50 50 /CEO 36.3 37.4 18.1 3-2-1 43.0 34.4 / 17.6 3-2-2 78 79.4

More information

5 Armitage x 1,, x n y i = 10x i + 3 y i = log x i {x i } {y i } 1.2 n i i x ij i j y ij, z ij i j 2 1 y = a x + b ( cm) x ij (i j )

5 Armitage x 1,, x n y i = 10x i + 3 y i = log x i {x i } {y i } 1.2 n i i x ij i j y ij, z ij i j 2 1 y = a x + b ( cm) x ij (i j ) 5 Armitage. x,, x n y i = 0x i + 3 y i = log x i x i y i.2 n i i x ij i j y ij, z ij i j 2 y = a x + b 2 2. ( cm) x ij (i j ) (i) x, x 2 σ 2 x,, σ 2 x,2 σ x,, σ x,2 t t x * (ii) (i) m y ij = x ij /00 y

More information

ohpmain.dvi

ohpmain.dvi fujisawa@ism.ac.jp 1 Contents 1. 2. 3. 4. γ- 2 1. 3 10 5.6, 5.7, 5.4, 5.5, 5.8, 5.5, 5.3, 5.6, 5.4, 5.2. 5.5 5.6 +5.7 +5.4 +5.5 +5.8 +5.5 +5.3 +5.6 +5.4 +5.2 =5.5. 10 outlier 5 5.6, 5.7, 5.4, 5.5, 5.8,

More information

..3. Ω, Ω F, P Ω, F, P ). ) F a) A, A,..., A i,... F A i F. b) A F A c F c) Ω F. ) A F A P A),. a) 0 P A) b) P Ω) c) [ ] A, A,..., A i,... F i j A i A

..3. Ω, Ω F, P Ω, F, P ). ) F a) A, A,..., A i,... F A i F. b) A F A c F c) Ω F. ) A F A P A),. a) 0 P A) b) P Ω) c) [ ] A, A,..., A i,... F i j A i A .. Laplace ). A... i),. ω i i ). {ω,..., ω } Ω,. ii) Ω. Ω. A ) r, A P A) P A) r... ).. Ω {,, 3, 4, 5, 6}. i i 6). A {, 4, 6} P A) P A) 3 6. ).. i, j i, j) ) Ω {i, j) i 6, j 6}., 36. A. A {i, j) i j }.

More information

( 28 ) ( ) ( ) 0 This note is c 2016, 2017 by Setsuo Taniguchi. It may be used for personal or classroom purposes, but not for commercial purp

( 28 ) ( ) ( ) 0 This note is c 2016, 2017 by Setsuo Taniguchi. It may be used for personal or classroom purposes, but not for commercial purp ( 28) ( ) ( 28 9 22 ) 0 This ote is c 2016, 2017 by Setsuo Taiguchi. It may be used for persoal or classroom purposes, but ot for commercial purposes. i (http://www.stat.go.jp/teacher/c2epi1.htm ) = statistics

More information

untitled

untitled 18 1 2,000,000 2,000,000 2007 2 2 2008 3 31 (1) 6 JCOSSAR 2007pp.57-642007.6. LCC (1) (2) 2 10mm 1020 14 12 10 8 6 4 40,50,60 2 0 1998 27.5 1995 1960 40 1) 2) 3) LCC LCC LCC 1 1) Vol.42No.5pp.29-322004.5.

More information

( )/2 hara/lectures/lectures-j.html 2, {H} {T } S = {H, T } {(H, H), (H, T )} {(H, T ), (T, T )} {(H, H), (T, T )} {1

( )/2   hara/lectures/lectures-j.html 2, {H} {T } S = {H, T } {(H, H), (H, T )} {(H, T ), (T, T )} {(H, H), (T, T )} {1 ( )/2 http://www2.math.kyushu-u.ac.jp/ hara/lectures/lectures-j.html 1 2011 ( )/2 2 2011 4 1 2 1.1 1 2 1 2 3 4 5 1.1.1 sample space S S = {H, T } H T T H S = {(H, H), (H, T ), (T, H), (T, T )} (T, H) S

More information

untitled

untitled 2 book conference 1990 2003 14 Repeated Cross-Section Data 1 M1,M2 M1 Sekine(1998) Repeated Cross-Section Data 1 1. (1989), Yoshida and Rasche(1990), Rasche(1990), 19921997, Fujiki and Mulligan(1996),

More information

カルマンフィルターによるベータ推定( )

カルマンフィルターによるベータ推定( ) β TOPIX 1 22 β β smoothness priors (the Capital Asset Pricing Model, CAPM) CAPM 1 β β β β smoothness priors :,,. E-mail: koiti@ism.ac.jp., 104 1 TOPIX β Z i = β i Z m + α i (1) Z i Z m α i α i β i (the

More information

29

29 9 .,,, 3 () C k k C k C + C + C + + C 8 + C 9 + C k C + C + C + C 3 + C 4 + C 5 + + 45 + + + 5 + + 9 + 4 + 4 + 5 4 C k k k ( + ) 4 C k k ( k) 3 n( ) n n n ( ) n ( ) n 3 ( ) 3 3 3 n 4 ( ) 4 4 4 ( ) n n

More information

コンピュータ概論

コンピュータ概論 4.1 For Check Point 1. For 2. 4.1.1 For (For) For = To Step (Next) 4.1.1 Next 4.1.1 4.1.2 1 i 10 For Next Cells(i,1) Cells(1, 1) Cells(2, 1) Cells(10, 1) 4.1.2 50 1. 2 1 10 3. 0 360 10 sin() 4.1.2 For

More information

1 filename=mathformula tex 1 ax 2 + bx + c = 0, x = b ± b 2 4ac, (1.1) 2a x 1 + x 2 = b a, x 1x 2 = c a, (1.2) ax 2 + 2b x + c = 0, x = b ± b 2

1 filename=mathformula tex 1 ax 2 + bx + c = 0, x = b ± b 2 4ac, (1.1) 2a x 1 + x 2 = b a, x 1x 2 = c a, (1.2) ax 2 + 2b x + c = 0, x = b ± b 2 filename=mathformula58.tex ax + bx + c =, x = b ± b 4ac, (.) a x + x = b a, x x = c a, (.) ax + b x + c =, x = b ± b ac. a (.3). sin(a ± B) = sin A cos B ± cos A sin B, (.) cos(a ± B) = cos A cos B sin

More information

waseda2010a-jukaiki1-main.dvi

waseda2010a-jukaiki1-main.dvi November, 2 Contents 6 2 8 3 3 3 32 32 33 5 34 34 6 35 35 7 4 R 2 7 4 4 9 42 42 2 43 44 2 5 : 2 5 5 23 52 52 23 53 53 23 54 24 6 24 6 6 26 62 62 26 63 t 27 7 27 7 7 28 72 72 28 73 36) 29 8 29 8 29 82 3

More information

ii 3.,. 4. F. ( ), ,,. 8.,. 1. (75% ) (25% ) =7 24, =7 25, =7 26 (. ). 1.,, ( ). 3.,...,.,.,.,.,. ( ) (1 2 )., ( ), 0., 1., 0,.

ii 3.,. 4. F. ( ), ,,. 8.,. 1. (75% ) (25% ) =7 24, =7 25, =7 26 (. ). 1.,, ( ). 3.,...,.,.,.,.,. ( ) (1 2 )., ( ), 0., 1., 0,. (1 C205) 4 10 (2 C206) 4 11 (2 B202) 4 12 25(2013) http://www.math.is.tohoku.ac.jp/~obata,.,,,..,,. 1. 2. 3. 4. 5. 6. 7. 8. 1., 2007 ( ).,. 2. P. G., 1995. 3. J. C., 1988. 1... 2.,,. ii 3.,. 4. F. ( ),..

More information

2 G(k) e ikx = (ik) n x n n! n=0 (k ) ( ) X n = ( i) n n k n G(k) k=0 F (k) ln G(k) = ln e ikx n κ n F (k) = F (k) (ik) n n= n! κ n κ n = ( i) n n k n

2 G(k) e ikx = (ik) n x n n! n=0 (k ) ( ) X n = ( i) n n k n G(k) k=0 F (k) ln G(k) = ln e ikx n κ n F (k) = F (k) (ik) n n= n! κ n κ n = ( i) n n k n . X {x, x 2, x 3,... x n } X X {, 2, 3, 4, 5, 6} X x i P i. 0 P i 2. n P i = 3. P (i ω) = i ω P i P 3 {x, x 2, x 3,... x n } ω P i = 6 X f(x) f(x) X n n f(x i )P i n x n i P i X n 2 G(k) e ikx = (ik) n

More information

x T = (x 1,, x M ) x T x M K C 1,, C K 22 x w y 1: 2 2

x T = (x 1,, x M ) x T x M K C 1,, C K 22 x w y 1: 2 2 Takio Kurita Neurosceince Research Institute, National Institute of Advanced Indastrial Science and Technology takio-kurita@aistgojp (Support Vector Machine, SVM) 1 (Support Vector Machine, SVM) ( ) 2

More information

LA-VAR Toda- Yamamoto(1995) VAR (Lag Augmented vector autoregressive model LA-VAR ) 2 2 Nordhaus(1975) 3 1 (D2)

LA-VAR Toda- Yamamoto(1995) VAR (Lag Augmented vector autoregressive model LA-VAR ) 2 2 Nordhaus(1975) 3 1 (D2) LA-VAR 1 1 1973 4 2000 4 Toda- Yamamoto(1995) VAR (Lag Augmented vector autoregressive model LA-VAR ) 2 2 Nordhaus(1975) 3 1 (D2) E-mail b1215@yamaguchi-u.ac.jp 2 Toda, Hiro Y. and Yamamoto,T.(1995) 3

More information

Microsoft Word - 表紙.docx

Microsoft Word - 表紙.docx 黒住英司 [ 著 ] サピエンティア 計量経済学 訂正および練習問題解答 (206/2/2 版 ) 訂正 練習問題解答 3 .69, 3.8 4 (X i X)U i i i (X i μ x )U i ( X μx ) U i. i E [ ] (X i μ x )U i i E[(X i μ x )]E[U i ]0. i V [ ] (X i μ x )U i i 2 i j E [(X i

More information

1 Tokyo Daily Rainfall (mm) Days (mm)

1 Tokyo Daily Rainfall (mm) Days (mm) ( ) r-taka@maritime.kobe-u.ac.jp 1 Tokyo Daily Rainfall (mm) 0 100 200 300 0 10000 20000 30000 40000 50000 Days (mm) 1876 1 1 2013 12 31 Tokyo, 1876 Daily Rainfall (mm) 0 50 100 150 0 100 200 300 Tokyo,

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

ed srv.cc.hit-u.ac.jp

ed srv.cc.hit-u.ac.jp 5 [ ] Two-Part Model contract decision frequency decision 1st Part 0.034 2nd Part 0.902 Full Price Model Full Price Elasticity Two-Part Model 1 15 1 2003 31.5 8.55 50.4 65 2 E-Mail: ed042007 srv.cc.hit-u.ac.jp

More information

(1.2) T D = 0 T = D = 30 kn 1.2 (1.4) 2F W = 0 F = W/2 = 300 kn/2 = 150 kn 1.3 (1.9) R = W 1 + W 2 = = 1100 N. (1.9) W 2 b W 1 a = 0

(1.2) T D = 0 T = D = 30 kn 1.2 (1.4) 2F W = 0 F = W/2 = 300 kn/2 = 150 kn 1.3 (1.9) R = W 1 + W 2 = = 1100 N. (1.9) W 2 b W 1 a = 0 1 1 1.1 1.) T D = T = D = kn 1. 1.4) F W = F = W/ = kn/ = 15 kn 1. 1.9) R = W 1 + W = 6 + 5 = 11 N. 1.9) W b W 1 a = a = W /W 1 )b = 5/6) = 5 cm 1.4 AB AC P 1, P x, y x, y y x 1.4.) P sin 6 + P 1 sin 45

More information

橡同居選択における所得の影響(DP原稿).PDF

橡同居選択における所得の影響(DP原稿).PDF ** *** * 2000 13 ** *** (1) (2) (1986) - 1 - - 2 - (1986) Ohtake (1991) (1993) (1994) (1996) (1997) (1997) Hayashi (1997) (1999) 60 Ohtake (1991) 86 (1996) 89 (1997) 92 (1999) 95 (1993) 86 89 74 79 (1986)

More information

untitled

untitled 1 n m (ICA = independent component analysis) BSS (= blind source separation) : s(t) =(s 1 (t),...,s n (t)) R n : x(t) =(x 1 (t),...,x n (t)) R m 1 i s i (t) a ji R j 2 (A =(a ji )) x(t) =As(t) (1) n =

More information

24 I ( ) 1. R 3 (i) C : x 2 + y 2 1 = 0 (ii) C : y = ± 1 x 2 ( 1 x 1) (iii) C : x = cos t, y = sin t (0 t 2π) 1.1. γ : [a, b] R n ; t γ(t) = (x

24 I ( ) 1. R 3 (i) C : x 2 + y 2 1 = 0 (ii) C : y = ± 1 x 2 ( 1 x 1) (iii) C : x = cos t, y = sin t (0 t 2π) 1.1. γ : [a, b] R n ; t γ(t) = (x 24 I 1.1.. ( ) 1. R 3 (i) C : x 2 + y 2 1 = 0 (ii) C : y = ± 1 x 2 ( 1 x 1) (iii) C : x = cos t, y = sin t (0 t 2π) 1.1. γ : [a, b] R n ; t γ(t) = (x 1 (t), x 2 (t),, x n (t)) ( ) ( ), γ : (i) x 1 (t),

More information

計量経済分析 2011 年度夏学期期末試験 担当 : 別所俊一郎 以下のすべてに答えなさい. 回答は日本語か英語でおこなうこと. 1. 次のそれぞれの記述が正しいかどうか判定し, 誤りである場合には理由, あるいはより適切な 記述はどのようなものかを述べなさい. (1) You have to wo

計量経済分析 2011 年度夏学期期末試験 担当 : 別所俊一郎 以下のすべてに答えなさい. 回答は日本語か英語でおこなうこと. 1. 次のそれぞれの記述が正しいかどうか判定し, 誤りである場合には理由, あるいはより適切な 記述はどのようなものかを述べなさい. (1) You have to wo 計量経済分析 2011 年度夏学期期末試験 担当 : 別所俊一郎 以下のすべてに答えなさい. 回答は日本語か英語でおこなうこと. 1. 次のそれぞれの記述が正しいかどうか判定し, 誤りである場合には理由, あるいはより適切な 記述はどのようなものかを述べなさい. (1) You have to worry about perfect multicollinearity in the multiple

More information

joho09.ppt

joho09.ppt s M B e E s: (+ or -) M: B: (=2) e: E: ax 2 + bx + c = 0 y = ax 2 + bx + c x a, b y +/- [a, b] a, b y (a+b) / 2 1-2 1-3 x 1 A a, b y 1. 2. a, b 3. for Loop (b-a)/ 4. y=a*x*x + b*x + c 5. y==0.0 y (y2)

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

ii 3.,. 4. F. (), ,,. 8.,. 1. (75%) (25%) =7 20, =7 21 (. ). 1.,, (). 3.,. 1. ().,.,.,.,.,. () (12 )., (), 0. 2., 1., 0,.

ii 3.,. 4. F. (), ,,. 8.,. 1. (75%) (25%) =7 20, =7 21 (. ). 1.,, (). 3.,. 1. ().,.,.,.,.,. () (12 )., (), 0. 2., 1., 0,. 24(2012) (1 C106) 4 11 (2 C206) 4 12 http://www.math.is.tohoku.ac.jp/~obata,.,,,.. 1. 2. 3. 4. 5. 6. 7.,,. 1., 2007 (). 2. P. G. Hoel, 1995. 3... 1... 2.,,. ii 3.,. 4. F. (),.. 5... 6.. 7.,,. 8.,. 1. (75%)

More information

.3. (x, x = (, u = = 4 (, x x = 4 x, x 0 x = 0 x = 4 x.4. ( z + z = 8 z, z 0 (z, z = (0, 8, (,, (8, 0 3 (0, 8, (,, (8, 0 z = z 4 z (g f(x = g(

.3. (x, x = (, u = = 4 (, x x = 4 x, x 0 x = 0 x = 4 x.4. ( z + z = 8 z, z 0 (z, z = (0, 8, (,, (8, 0 3 (0, 8, (,, (8, 0 z = z 4 z (g f(x = g( 06 5.. ( y = x x y 5 y 5 = (x y = x + ( y = x + y = x y.. ( Y = C + I = 50 + 0.5Y + 50 r r = 00 0.5Y ( L = M Y r = 00 r = 0.5Y 50 (3 00 0.5Y = 0.5Y 50 Y = 50, r = 5 .3. (x, x = (, u = = 4 (, x x = 4 x,

More information

Solution Report

Solution Report CGE 3 GAMS * Date: 2018/07/24, Version 1.1 1 2 2 GAMSIDE 3 2.1 GAMS................................. 3 2.2 GAMSIDE................................ 3 2.3 GAMSIDE............................. 7 3 GAMS 11

More information

Isogai, T., Building a dynamic correlation network for fat-tailed financial asset returns, Applied Network Science (7):-24, 206,

Isogai, T., Building a dynamic correlation network for fat-tailed financial asset returns, Applied Network Science (7):-24, 206, H28. (TMU) 206 8 29 / 34 2 3 4 5 6 Isogai, T., Building a dynamic correlation network for fat-tailed financial asset returns, Applied Network Science (7):-24, 206, http://link.springer.com/article/0.007/s409-06-0008-x

More information

1. A0 A B A0 A : A1,...,A5 B : B1,...,B

1. A0 A B A0 A : A1,...,A5 B : B1,...,B 1. A0 A B A0 A : A1,...,A5 B : B1,...,B12 2. 3. 4. 5. A0 A B f : A B 4 (i) f (ii) f (iii) C 2 g, h: C A f g = f h g = h (iv) C 2 g, h: B C g f = h f g = h 4 (1) (i) (iii) (2) (iii) (i) (3) (ii) (iv) (4)

More information

液晶の物理1:連続体理論(弾性,粘性)

液晶の物理1:連続体理論(弾性,粘性) The Physics of Liquid Crystals P. G. de Gennes and J. Prost (Oxford University Press, 1993) Liquid crystals are beautiful and mysterious; I am fond of them for both reasons. My hope is that some readers

More information

³ÎΨÏÀ

³ÎΨÏÀ 2017 12 12 Makoto Nakashima 2017 12 12 1 / 22 2.1. C, D π- C, D. A 1, A 2 C A 1 A 2 C A 3, A 4 D A 1 A 2 D Makoto Nakashima 2017 12 12 2 / 22 . (,, L p - ). Makoto Nakashima 2017 12 12 3 / 22 . (,, L p

More information

ad bc A A A = ad bc ( d ) b c a n A n A n A A det A A ( ) a b A = c d det A = ad bc σ {,,,, n} {,,, } {,,, } {,,, } ( ) σ = σ() = σ() = n sign σ sign(

ad bc A A A = ad bc ( d ) b c a n A n A n A A det A A ( ) a b A = c d det A = ad bc σ {,,,, n} {,,, } {,,, } {,,, } ( ) σ = σ() = σ() = n sign σ sign( I n n A AX = I, YA = I () n XY A () X = IX = (YA)X = Y(AX) = YI = Y X Y () XY A A AB AB BA (AB)(B A ) = A(BB )A = AA = I (BA)(A B ) = B(AA )B = BB = I (AB) = B A (BA) = A B A B A = B = 5 5 A B AB BA A

More information

082_rev2_utf8.pdf

082_rev2_utf8.pdf 3 1. 2. 3. 4. 5. 1 3 3 3 2008 3 2008 2008 3 2008 2008, 1 5 Lo and MacKinlay (1990a) de Jong and Nijman (1997) Cohen et al. (1983) Lo and MacKinlay (1990a b) Cohen et al. (1983) de Jong and Nijman (1997)

More information

総合薬学講座 生物統計の基礎

総合薬学講座 生物統計の基礎 2013 10 22 ( ) 2013 10 22 1 / 40 p.682 1. 2. 3 2 t Mann Whitney U ). 4 χ 2. 5. 6 Dunnett Tukey. 7. 8 Kaplan Meier.. U. ( ) 2013 10 22 2 / 40 1 93 ( 20 ) 230. a t b c χ 2 d 1.0 +1.0 e, b ( ) e ( ) ( ) 2013

More information

k3 ( :07 ) 2 (A) k = 1 (B) k = 7 y x x 1 (k2)?? x y (A) GLM (k

k3 ( :07 ) 2 (A) k = 1 (B) k = 7 y x x 1 (k2)?? x y (A) GLM (k 2012 11 01 k3 (2012-10-24 14:07 ) 1 6 3 (2012 11 01 k3) kubo@ees.hokudai.ac.jp web http://goo.gl/wijx2 web http://goo.gl/ufq2 1 3 2 : 4 3 AIC 6 4 7 5 8 6 : 9 7 11 8 12 8.1 (1)........ 13 8.2 (2) χ 2....................

More information

12/1 ( ) GLM, R MCMC, WinBUGS 12/2 ( ) WinBUGS WinBUGS 12/2 ( ) : 12/3 ( ) :? ( :51 ) 2/ 71

12/1 ( ) GLM, R MCMC, WinBUGS 12/2 ( ) WinBUGS WinBUGS 12/2 ( ) : 12/3 ( ) :? ( :51 ) 2/ 71 2010-12-02 (2010 12 02 10 :51 ) 1/ 71 GCOE 2010-12-02 WinBUGS kubo@ees.hokudai.ac.jp http://goo.gl/bukrb 12/1 ( ) GLM, R MCMC, WinBUGS 12/2 ( ) WinBUGS WinBUGS 12/2 ( ) : 12/3 ( ) :? 2010-12-02 (2010 12

More information

確率論と統計学の資料

確率論と統計学の資料 5 June 015 ii........................ 1 1 1.1...................... 1 1........................... 3 1.3... 4 6.1........................... 6................... 7 ii ii.3.................. 8.4..........................

More information

n ξ n,i, i = 1,, n S n ξ n,i n 0 R 1,.. σ 1 σ i .10.14.15 0 1 0 1 1 3.14 3.18 3.19 3.14 3.14,. ii 1 1 1.1..................................... 1 1............................... 3 1.3.........................

More information

151021slide.dvi

151021slide.dvi : Mac I 1 ( 5 Windows (Mac Excel : Excel 2007 9 10 1 4 http://asakura.co.jp/ books/isbn/978-4-254-12172-8/ (1 1 9 1/29 (,,... (,,,... (,,, (3 3/29 (, (F7, Ctrl + i, (Shift +, Shift + Ctrl (, a i (, Enter,

More information