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

Size: px
Start display at page:

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

Transcription

1 Title 講義のーと : データ解析のための統計モデリング Author(s) 久保, 拓弥 Issue Date 2008 Doc URL Type learningobject Note この講義資料は, 著者のホームページ ードできます Note(URL) Additional There Information are other files related to this item in HUSCAP File Information kubostat2008c.pdf ( 第 3 回 ) Instructions for use Hokkaido University Collection of Scholarly and Aca

2 ( :11 ) 1 ( ) 5 (+2) 3 ( ) (GLM) 1 kubo@ees.hokudai.ac.jp (GLM)? 1 2. GLM : link 4 3. GLM : 5 4. : glm(..., family = poisson) Deviance? λ λ λ = ( β 1 + β 2 ( 1) + β 3 ( 2) + ) {β j } = {β 1, β 2, }

3 ( :11 ) 2 1. (GLM)? 1 1 Bayes Bayes MCMC random effects (GLMM) (GLM) +, fixed effects / 8 1: ( ) (general linear model) ANOVA ANCOVA = 2 2.? general linear model

4 ( :11 ) 3 ( ) ? 0, 1, 2, 3,... (1) ( )? (2)? 2: ( ) ( 3) (generalized linear model; GLM) 4 : 5 link ( : ) GLM 6 6.

5 ( :11 ) 4 3: ( ) () 7 logistic GLM : link GLM (probablistic distribution) link (link function) (linear predictor) GLM R glm() logistic 9.? ( ) rbinom() glm(family = binomial) rbinom() glm(family = binomial) rpois() glm(family = poisson) rnbinom() glm.nb() ( ) rgamma() glm(family = gamma) rnorm() glm(family = gaussian)

6 ( :11 ) 5 link (link function) ( ) µ µ = β 1 + β 2 ( 1) + β 3 ( 2) + {β j } (explanatory variable) β j (1 ) j z = j β j (1 ) z GLM link (response variable) µ = z 12 log link log µ = z µ = exp ( β 1 + β 2 ( 1) + β 3 ( 2) + ) ( ) 12. R glm() identity link link GLM link canonical link function (R glm() family ) canonical ( ) 14 link glm() family link (m ) 14. ( ) binomial logit µ(1 µ) ( ): Np(1 p) N binomial logit µ(1 µ) ( ) p poisson log µ ( ) gamma log? µ 2 gaussian identity

7 ( :11 ) 6 3. GLM : 4 GLM f i i C: T: y i x i 4: i (i = 1, 2,, 100) ( ) i (i = 1, 2, 3,, 100, 100 ) y i ; 15 x i ; 50 (i = 1, 2,, 50) (C ) 50 (i = 51, 52,, 100) (T ) spread sheet 16 CSV (comma separated values) 17 data3a.csv 18 R 19 > d <- read.csv("data3a.csv") data.frame d 20 data.frame table R? d ENTER ( ) 17. CSV 18. web page 19. R... R setwd() data3a.csv 20.

8 y x f C C C... ( ) T T ( :11 ) head(d) data.frame head(d, 10) y x f 10 R d x y > d$x [1] [9] ( )... [97] > d$y [1] [17] ( )... [97] f > d$f [1] C C C C C C C C C C C C C C C C C C C C C C C C C [26] C C C C C C C C C C C C C C C C C C C C C C C C C [51] T T T T T T T T T T T T T T T T T T T T T T T T T [76] T T T T T T T T T T T T T T T T T T T T T T T T T Levels: C T (factor) R read.csv() CSV table C T 23 factor f C T (levels) () factor C, T read.csv() 24 R class() ( 24.

9 ( :11 ) 8 ) 25 > class(d) # d data.frame [1] "data.frame" > class(d$y) # y integer [1] "integer" > class(d$x) # x numeric [1] "numeric" > class(d$f) # f factor [1] "factor" R summary() d data.frame > summary(d) y x f Min. : 2.00 Min. : C:50 1st Qu.: st Qu.: T:50 Median : 8.00 Median : Mean : 7.83 Mean : rd Qu.: rd Qu.: Max. :15.00 Max. : R # data.frame summary f C 50 T 50 summary plot() factor vector summary() x y! (scatter plot) > plot(d$x, d$y, pch = c(21, 19)[d$f]) > legend("topleft", legend = c("c", "T"), pch = c(21, 19)) d$y C T d$x f

10 ( :11 ) 9 > plot(d$f, d$y) C T R plot() 27 (box-whisker %, 50%, 25% plot) ( ) 2.5% ( ) 95% R plot() summary() : glm(..., family = poisson) d y x f ( ) i y i 0, 1, 2 ( ) i λ i = exp(β 1 + β 2 x i ) x i f i f i

11 ( :11 ) 10 log λ i = β 1 + β 2 x i link log link z = β 1 + β 2 x i log link? λ i λ i > 0 λ i = exp(z i ) z (= β 1 + β 2 x i ) exp() z λ i λ i β 1, β 2, x i > xi <- seq(-4, 5, 0.1) λ i 0 > plot(xi, exp( * xi), type = "l", ylab = "lambda", lwd = 2) > lines(xi, exp( * xi), lwd = 2, lty = 2) # > abline(v = 0, lwd = 2, lty = 3) lambda xi λ i = exp(β 1 + β 2 x i ) i y i p(y i {β j }, {x i }) = λy i i exp( λ i ) y i! L({β j } {y i }, {x i }) = 100 i=1 λ y i i exp( λ i ) y i! 100 log L({β j } {y i }, {x i }) = i=1 { λ y i log i exp( λ i ) y i! }

12 ( :11 ) 11 ˆβ 1 ˆβ 2 (GLM) R GLM > fit <- glm(y ~ x, data = d, family = poisson) (fitting) 31 ( 31. ) fit names(fit) 5: glm() 5 family = poisson log link fit > fit # print(fit) Call: glm(formula = y ~ x, family = poisson, data = d) Coefficients: (Intercept) x family = poisson(link = "log") link poisson family default link function 32 "log" 32. canonical link function ( link ) Degrees of Freedom: 99 Total (i.e. Null); 98 Residual Null Deviance: Residual Deviance: AIC: 474.8

13 ( :11 ) 12 summary() > summary(fit) Call: glm(formula = y ~ x, family = poisson, data = d) Deviance Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error z value Pr(> z ) (Intercept) *** x * --- Signif. codes: 0 *** ** 0.01 * (Dispersion parameter for poisson family taken to be 1) Null deviance: on 99 degrees of freedom Residual deviance: on 98 degrees of freedom AIC: Number of Fisher Scoring iterations: 4 Deviance summary() (coefficient) Coefficients: Estimate Std. Error z value Pr(> z ) (Intercept) *** x * Coefficients ( ) (Intercept) ( ) ( ) β 1 x β 2 Estimate ˆβ ˆβ Std. Errror?

14 ( :11 ) 13 ˆβ 1 ˆβ 2 ˆβ ? (SE) z value 34 ( ) / SE (Wald ) 6 ˆβ ˆβ 1 SE ˆβ 2 SE ˆβ 2 ˆβ :? 34. z Wald 35 Pr(> z ) z value 35. (Neyman- ˆβ Pearson ) 36 ( ) Wald R summary(glm(...)) 37 (prediction) R

15 ( :11 ) 14 > plot(d$x, d$y, pch = c(21, 19)[d$f]) > xx <- seq(min(d$x), max(d$x), length = 100) > lines(xx, exp( * xx), lwd = 2) d$y d$x lines(xx, exp( * xx), lwd = 2) λ > yy <- predict(fit, newdata = data.frame(x = xx), type = "response") > lines(xx, yy, lwd = 2) predict() log L({β j } ) { ˆβ i } { ˆβ i } log L({β j } ) loglik(fit) > loglik(fit) # fit <- glm(y ~ x,...) log Lik (df=2) (df=2) β 1 β x i f i

16 ( :11 ) 15 f (factor) > d$f [1] C C C C C C C C C C C C C C C C C C C C C C C C C [26] C C C C C C C C C C C C C C C C C C C C C C C C C [51] T T T T T T T T T T T T T T T T T T T T T T T T T [76] T T T T T T T T T T T T T T T T T T T T T T T T T Levels: C T R glm() numeric, integer, factor > fit.f <- glm(y ~ f, data = d, family = poisson) > fit.f Call: glm(formula = y ~ f, family = poisson, data = d) Coefficients: (Intercept) ft Degrees of Freedom: 99 Total (i.e. Null); 98 Residual Null Deviance: Residual Deviance: AIC: glm(y ~ f,...) Coefficients (Intercept) ( ) f ft f C ( ) T ( ) 2 ( ) 1 C 2 39 i f C T λ i exp( ) = exp(2.05) λ i exp( ) = exp(2.0628) 39. 2

17 ( :11 ) 16 > loglik(fit.f) # fit.f <- glm(y ~ f,...) log Lik (df=2) 6. + f glm() x > fit.full <- glm(y ~ x + f, data = d, family = poisson) > fit.full Call: glm(formula = y ~ x + f, family = poisson, data = d) Coefficients: (Intercept) x ft Degrees of Freedom: 99 Total (i.e. Null); 97 Residual Null Deviance: Residual Deviance: AIC: ft log link i x i C λ i exp( x i ) T λ i exp( x i 0.032) exp( x i 0.032) = exp( x i ) exp( 0.032) = () ( ) glm(y ~ x + f,...)

18 ( :11 ) 17 exp( 0.032) > loglik(fit.full) # fit.full <- glm(y ~ x + f,...) log Lik (df=3) 7. Deviance?? loglik() deviance 41 log L({β j } ) log L { ˆβ i } log L log L summary(glm(y...)) log L 42 deviance deviance D = 2 log L 41. deviance 42. loglik() log L ? x i λ i = exp(β 1 + β 2 x i )

19 ( :11 ) 18 log L deviance (D = 2 log L ) glm()... ( )... Null Deviance: Residual Deviance: AIC: Null Deviance Residual Deviance AIC Residual Deviance 44 Residual deviance deviance D 44. Residual D ( D) 45 ( D) 45. Deviance residual deviance? full model (!) deviance 46 data.frame d > d$y [1] ( )... x i λ i d$y full model 46. β 1 β 2 2 1, 2, 3 y y y () ?

20 ( :11 ) > sum(dpois(d$y, lambda = d$y, log = TRUE)) [1] log L deviance D = 2 log L ( D) residual deviance D ( D) = 85.0 glm() Residual Deviance: AIC: residual deviance residual deviance residual deviance? Residual deviance full model () λ i = exp(β 1 ) 1 R null model 50 null model > fit.null <- glm(formula = y ~ 1, family = poisson, data = d) > fit.null Call: glm(formula = y ~ 1, family = poisson, data = d) Coefficients: (Intercept) Degrees of Freedom: 99 Total (i.e. Null); 99 Residual Null Deviance: Residual Deviance: AIC: residual deviance 89.5 null model 50. Null (null hypothesis) null model

21 ( :11 ) 20 > loglik(fit.null) # fit.null <- glm(y ~ 1,...) log Lik (df=1) null model residual deviance glm()... ( )... Degrees of Freedom: 99 Total (i.e. Null); 98 Residual Null Deviance: Residual Deviance: AIC: Null Deviance residual deviance 85.0 residual deviance 89.5 x i residual deviance ( ) degree of freedom () 51. Degrees of Freedom: 99 Total (i.e. Null); 98 Residual Null model () 99 ( 100-1) 98 (100-2) (k) (log L ) deviance (D = 2 log L ) residual deviance ( 2 log L D) Model k log L Deviance Residual 2 log L deviance NULL f x x + f FULL

22 ( :11 ) 21 table residual deviance 8. (= deviance ) full model R 2 (model selection) AIC (Akaike s information criterion) AIC = 2( ) + 2() = 2 log L + 2k AIC Model k log L Deviance Residual 2 log L AIC deviance NULL f x x + f FULL (Model x) R stepaic() AIC glm()

23 ( :11 ) 22 > library(mass) # stepaic MASS package > stepaic(fit.full) # Start: AIC= y ~ x + f Df Deviance AIC - f <none> x Step: y ~ x AIC= Df Deviance AIC <none> x Call: glm(formula = y ~ x, family = poisson, data = d) Coefficients: (Intercept) x Degrees of Freedom: 99 Total (i.e. Null); 98 Residual Null Deviance: Residual Deviance: AIC: & 9. (GLM) ( ) ANOVA R glm() GLM : link = (poisson) link = log glm() GLM

24 ( :11 ) 23 (prediction) Deviance -2 AIC = Deviance + 2 ( ) logit link GLM

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

講義のーと : データ解析のための統計モデリング. 第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

kubostat2017c p (c) Poisson regression, a generalized linear model (GLM) : :

kubostat2017c p (c) Poisson regression, a generalized linear model (GLM) : : kubostat2017c p.1 2017 (c), a generalized linear model (GLM) : kubo@ees.hokudai.ac.jp http://goo.gl/76c4i 2017 11 14 : 2017 11 07 15:43 kubostat2017c (http://goo.gl/76c4i) 2017 (c) 2017 11 14 1 / 47 agenda

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

講義のーと : データ解析のための統計モデリング. 第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

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

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

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

(2/24) : 1. R R R

(2/24) : 1. R R R R? http://hosho.ees.hokudai.ac.jp/ kubo/ce/2004/ : kubo@ees.hokudai.ac.jp (2/24) : 1. R 2. 3. R R (3/24)? 1. ( ) 2. ( I ) : (p ) : cf. (power) p? (4/24) p ( ) I p ( ) I? ( ) (5/24)? 0 2 4 6 8 A B A B (control)

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

kubo2017sep16a p.1 ( 1 ) : : :55 kubo ( ( 1 ) / 10

kubo2017sep16a p.1 ( 1 ) :   : :55 kubo (  ( 1 ) / 10 kubo2017sep16a p.1 ( 1 ) kubo@ees.hokudai.ac.jp 2017 09 16 : http://goo.gl/8je5wh : 2017 09 13 16:55 kubo (http://goo.gl/ufq2) ( 1 ) 2017 09 16 1 / 106 kubo (http://goo.gl/ufq2) ( 1 ) 2017 09 16 2 / 106

More information

kubostat2018d p.2 :? bod size x and fertilization f change seed number? : a statistical model for this example? i response variable seed number : { i

kubostat2018d p.2 :? bod size x and fertilization f change seed number? : a statistical model for this example? i response variable seed number : { i kubostat2018d p.1 I 2018 (d) model selection and kubo@ees.hokudai.ac.jp http://goo.gl/76c4i 2018 06 25 : 2018 06 21 17:45 1 2 3 4 :? AIC : deviance model selection misunderstanding kubostat2018d (http://goo.gl/76c4i)

More information

/ 60 : 1. GLM? 2. A: (pwer functin) x y?

/ 60 : 1. GLM? 2. A: (pwer functin) x y? 2009-03-17 1/ 60 (2009-03-17) GLM 1. GLM :, link,, deviance (20 ) 2. GLM : (60 ) 3. GLM ( ): ffset (40 ) http://hsh.ees.hkudai.ac.jp/ kub/ce/ecsj2009.html 2009-03-17 2/ 60 : 1. GLM? 2. A: (pwer functin)

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

(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

kubostat7f p GLM! logistic regression as usual? N? GLM GLM doesn t work! GLM!! probabilit distribution binomial distribution : : β + β x i link functi

kubostat7f p GLM! logistic regression as usual? N? GLM GLM doesn t work! GLM!! probabilit distribution binomial distribution : : β + β x i link functi kubostat7f p statistaical models appeared in the class 7 (f) kubo@eeshokudaiacjp https://googl/z9cjy 7 : 7 : The development of linear models Hierarchical Baesian Model Be more flexible Generalized Linear

More information

60 (W30)? 1. ( ) 2. ( ) web site URL ( :41 ) 1/ 77

60 (W30)? 1. ( ) 2. ( ) web site URL ( :41 ) 1/ 77 60 (W30)? 1. ( ) kubo@ees.hokudai.ac.jp 2. ( ) web site URL http://goo.gl/e1cja!! 2013 03 07 (2013 03 07 17 :41 ) 1/ 77 ! : :? 2013 03 07 (2013 03 07 17 :41 ) 2/ 77 2013 03 07 (2013 03 07 17 :41 ) 3/ 77!!

More information

/ 55 2 : : (GLM) 1. 1/23 ( )? GLM? (GLM ) 2.! 1/25 ( ) ffset (GLM )

/ 55 2 : : (GLM) 1. 1/23 ( )? GLM? (GLM ) 2.! 1/25 ( ) ffset (GLM ) 2012 01 25 1/ 55 ( II) : (2012 1 ) 2 2 (GLM) 2012 01 25! kub@ees.hkudai.ac.jp http://g.gl/76c4i 2012 01 25 2/ 55 2 : : (GLM) 1. 1/23 ( )? GLM? (GLM ) 2.! 1/25 ( ) ffset (GLM ) 2012 01 25 3/ 55 1. : 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

kubostat2017j p.2 CSV CSV (!) d2.csv d2.csv,, 286,0,A 85,0,B 378,1,A 148,1,B ( :27 ) 10/ 51 kubostat2017j (http://goo.gl/76c4i

kubostat2017j p.2 CSV CSV (!) d2.csv d2.csv,, 286,0,A 85,0,B 378,1,A 148,1,B ( :27 ) 10/ 51 kubostat2017j (http://goo.gl/76c4i kubostat2017j p.1 2017 (j) Categorical Data Analsis kubo@ees.hokudai.ac.jp http://goo.gl/76c4i 2017 11 15 : 2017 11 08 17:11 kubostat2017j (http://goo.gl/76c4i) 2017 (j) 2017 11 15 1 / 63 A B C D E F G

More information

kubostat2017b p.1 agenda I 2017 (b) probability distribution and maximum likelihood estimation :

kubostat2017b p.1 agenda I 2017 (b) probability distribution and maximum likelihood estimation : kubostat2017b p.1 agenda I 2017 (b) probabilit distribution and maimum likelihood estimation kubo@ees.hokudai.ac.jp http://goo.gl/76c4i 2017 11 14 : 2017 11 07 15:43 1 : 2 3? 4 kubostat2017b (http://goo.gl/76c4i)

More information

-99-

-99- Title 総 合 討 議 : 1 日 目 を 通 して Author(s) Citation Issue Date 2016-03-31 DOI Doc URLhttp://hdl.handle.net/2115/61143 Right Type bulletin (other) Additional Information File Information CATS8_5tougi_1.pdf

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

DAA09

DAA09 > summary(dat.lm1) Call: lm(formula = sales ~ price, data = dat) Residuals: Min 1Q Median 3Q Max -55.719-19.270 4.212 16.143 73.454 Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) 237.1326

More information

Title 光 合 成 研 究 のための 安 定 同 位 体 測 定 法 Author(s) 半 場, 祐 子 Citation Issue Date 2009-03-31 DOI Doc URLhttp://hdl.handle.net/2115/39103 Right Type bulletin (article) Additional Information File Information

More information

Title 水稲直播栽培導入による経営規模拡大の検討 Author(s) 光永, 光 Citation 農業経営研究, 24: 55-67 Issue Date 1998-02 DOI Doc URLhttp://hdl.handle.net/2115/36530 Right Type bulletin Additional Information File Information 24_55-68.pdf

More information

Title 報告 2 韓国法の歴史 Author(s) 高, 翔龍 Citation 北大法学論集, 48(4): 206-227 Issue Date 1997-12-26 DOI Doc URLhttp://hdl.handle.net/2115/15738 Right Type bulletin Additional Information File Information 48(4)_p206-227.pdf

More information

Title 民 事 判 例 研 究 Author(s) 長 塚, 真 琴 Citation 北 大 法 学 論 集, 50(5): 133-147 Issue Date 2000-01-31 DOI Doc URLhttp://hdl.handle.net/2115/14987 Right Type bulletin Additional Information File Information 50(5)_p133-147.pdf

More information

Title 酪農経営の基礎と課題 Author(s) 桃野, 作次郎 Citation 季刊農業経営研究, 1: 9-26 Issue Date 1955-12-25 DOI Doc URLhttp://hdl.handle.net/2115/36231 Right Type bulletin Additional Information File Information 1_9-26.pdf Instructions

More information

Title 家 牒 についての 一 考 察 Author(s) 佐 伯, 有 清 Citation 北 海 道 大 学 人 文 科 学 論 集, 19: 1-14 Issue Date 1983-03-26 DOI Doc URLhttp://hdl.handle.net/2115/34366 Right Type bulletin Additional Information File Information

More information

Title 日 本 近 代 文 学 におけるフランス Author(s) 神 谷, 忠 孝 Citation 北 海 道 大 学 人 文 科 学 論 集, 24: 57-82 Issue Date 1986-03-17 DOI Doc URLhttp://hdl.handle.net/2115/34385 Right Type bulletin Additional Information File

More information

Title 軽種馬生産農家の経営対応と問題点について Author(s) 吉川, 正明 Citation 農業経営研究, 26: 97-117 Issue Date 2000-02 DOI Doc URLhttp://hdl.handle.net/2115/36559 Right Type bulletin Additional Information File Information 26_97-118.pdf

More information

Title 観 光 と 地 域 ブランド : 地 域 イメージを 物 語 る 広 報 メディ ア Author(s) 内 田, 純 一 Citation Issue Date 2006-06-20 DOI Doc URLhttp://hdl.handle.net/2115/56428 Right Type bookchapter Additional Information File Information

More information

Title 最 高 裁 判 所 昭 和 61 年 9 月 4 日 判 決 Author(s) 曽 野, 裕 夫 Citation 北 大 法 学 論 集, 39(3): 273-284 Issue Date 1988-10-20 DOI Doc URLhttp://hdl.handle.net/2115/16641 Right Type bulletin Additional Information

More information

~:::

~::: Title 自 白 排 除 法 則 の 研 究 ( 五 ) Author(s) 関 口, 和 徳 Citation 北 大 法 学 論 集 = The Hokkaido Law Review, 6 Issue Date 2010-03-31 DOI Doc URLhttp://hdl.handle.net/2115/42993 Right Type bulletin (article) Additional

More information

Title 馬 ( 軽 種 馬 )の 生 産 Author(s) 塙, 友 之 Citation 北 海 道 大 学 農 学 部 技 術 部 研 究 技 術 報 告, 1: 38-44 Issue Date 1994-03 DOI Doc URLhttp://hdl.handle.net/2115/35259 Right Type bulletin Additional Information File

More information

Title 人 生 過 程 観 と 宗 教 Author(s) 宇 都 宮, 輝 夫 Citation 哲 学, 38: 1-20 Issue Date 2002-07-21 DOI Doc URLhttp://hdl.handle.net/2115/48027 Right Type bulletin (article) Additional Information File Information

More information

Title ケアの社会化と代替をめぐる論点 Author(s) 保田, 真希 Citation 教育福祉研究, 19: 37-48 Issue Date 2013-09-30 DOI Doc URLhttp://hdl.handle.net/2115/54009 Right Type bulletin (article) Additional Information File Information

More information

Title フランス選挙制度史 ( 一 ) Author(s) 岡田, 信弘 Citation 北大法学論集, 29(2): 61-100 Issue Date 1978-10-31 DOI Doc URLhttp://hdl.handle.net/2115/16255 Right Type bulletin Additional Information File Information 29(2)_p61-100.pdf

More information

Title 子どもの経験の不平等 Author(s) 大澤, 真平 Citation 教育福祉研究 = Journal of Education and S 13 Issue Date 2008-03-28 Doc URLhttp://hdl.handle.net/2115/39607 Right Type bulletin (article) Additional Information Instructions

More information

2 と入力すると以下のようになる > x1<-c(1.52,2,3.01,9,2,6.3,5,11.2) > y1<-c(4,0.21,-1.5,8,2,6,9.915,5.2) > cor(x1,y1) [1] > cor.test(x1,y1) Pearson's produ

2 と入力すると以下のようになる > x1<-c(1.52,2,3.01,9,2,6.3,5,11.2) > y1<-c(4,0.21,-1.5,8,2,6,9.915,5.2) > cor(x1,y1) [1] > cor.test(x1,y1) Pearson's produ 1 統計 データ解析セミナーの予習 2010.11.24 粕谷英一 ( 理 生物 生態 ) GCOE アジア保全生態学 本日のメニュー R 一般化線形モデル (Generalized Linear Models 略して GLM) R で GLM を使う R でグラフを描く 説明しないこと :R でできること全般 たくさんあるので時間的に無理 R でするプログラミング-データ解析なら使いやすい R 起動と終了

More information

~ß Title 加 州 における 日 本 人 Author(s) 中 島, 九 郎 Citation 農 經 會 論 叢, 15: 143-155 Issue Date 1959-03 DOI Doc URLhttp://hdl.handle.net/2115/10778 Right Type bulletin Additional Information File Information 15_p143-155.pdf

More information

Title 民 事 判 例 研 究 Author(s) 林, 竧 Citation 北 大 法 学 論 集, 55(1): 209-225 Issue Date 2004-05-06 DOI Doc URLhttp://hdl.handle.net/2115/15281 Right Type bulletin Additional Information File Information 55(1)_p209-225.pdf

More information

Title 幕末西洋行と中国見聞 ( 一 ) Author(s) 松沢, 弘陽 Citation 北大法学論集, 38(5-6 上 ): 171-203 Issue Date 1988-07-20 DOI Doc URLhttp://hdl.handle.net/2115/16597 Right Type bulletin Additional Information File Information

More information

Title 液中における気泡熱伝達の基礎実験 Author(s) 岡垣, 理 ; 津田, 紘 Citation 衛生工学, 17: 33-45 Issue Date 1970-03 DOI Doc URLhttp://hdl.handle.net/2115/36204 Right Type bulletin Additional Information File Information 17_33-46.pdf

More information

Title 具体の戦略 : 文化遺産を生かす戦略 : 観光活用で 文化遺産 人 を再生する Author(s) 池ノ上, 真一 Citation Issue Date 2016-03-31 DOI Doc URLhttp://hdl.handle.net/2115/61328 Right Type bulletin (article) Additional Information File Information

More information

~::: :,/ ~7;

~::: :,/ ~7; Title 民 事 判 例 研 究 Author(s) 稲 垣, 美 穂 子 Citation 北 大 法 学 論 集, 60(2): 271-292 Issue Date 2009-07-31 DOI Doc URLhttp://hdl.handle.net/2115/38922 Right Type bulletin (article) Additional Information File Information

More information

Title 李贄と焦竑 Author(s) 松川, 健二 Citation 北海道大学人文科学論集, 18: 1-10 Issue Date 1981-03-29 DOI Doc URLhttp://hdl.handle.net/2115/34360 Right Type bulletin Additional Information File Information 18_PR1-10.pdf Instructions

More information

Title 労働支援組織の動向に関する一考察 : 網走管内東紋地域を事例に Author(s) 山田, 洋文 Citation 農業経営研究, 29: 19-29 Issue Date 2003-02 DOI Doc URLhttp://hdl.handle.net/2115/36582 Right Type bulletin Additional Information File Information

More information

-17-

-17- Title 世界コスプレサミットの意義, 可能性, 課題 : 文化の伝播と受容から Author(s) 小栗, 徳丸 Citation Issue Date 2016-03-31 DOI Doc URLhttp://hdl.handle.net/2115/61140 Right 2016 小栗徳丸 Type bulletin (article) Additional Information File

More information

Title 都 市 農 業 における 生 活 改 善 普 及 事 業 の 意 義 に 関 する 研 究 Author(s) 河 合, 知 子 Citation 社 会 教 育 研 究, 5: 82-92 Issue Date 1984-09 DOI Doc URLhttp://hdl.handle.net/2115/28442 Right Type bulletin Additional Information

More information

Title 刑 事 判 例 研 究 Author(s) 松 尾, 誠 紀 Citation 北 大 法 学 論 集, 54(5): 177-193 Issue Date 2003-12-15 DOI Doc URLhttp://hdl.handle.net/2115/15251 Right Type bulletin Additional Information File Information 54(5)_p177-193.pdf

More information

Title 補論 : 日本資本主義の発展と地域工業化の史的累重性 Author(s) 小林, 甫 Citation 調査と社会理論 研究報告書, 5: 67-84 Issue Date 1985 DOI Doc URLhttp://hdl.handle.net/2115/24242 Right Type bulletin Additional Information File Information

More information

Titleノヴァーリス 夜 の 讃 歌 における 時 間 の 問 題 Author(s) 高 橋, 修 Citation 独 語 独 文 学 科 研 究 年 報, 16: 1-18 Issue Date 1990-01 DOI Doc URLhttp://hdl.handle.net/2115/25797 Right Type bulletin Additional Information File

More information

Title 寡占価格の決定と設定 Author(s) 増田, 辰良 Citation 經濟學研究 = ECONOMIC STUDIES, 47(4): 16 Issue Date 1998-03 DOI Doc URLhttp://hdl.handle.net/2115/32098 Right Type bulletin Additional Information File Information

More information

Title ストック オプション判決に対する市場の反応 Author(s) 櫻田, 譲 ; 大沼, 宏 Citation 第 6 回 税に関する論文集 pp.53-94 Issue Date 2010 DOI Doc URLhttp://hdl.handle.net/2115/44424 Right Type article Additional Information File Information

More information

Title 遠藤博也先生の経歴と業績 Author(s) 畠山, 武道 Citation 北大法学論集, 43(3): 153-171 Issue Date 1992-11-10 DOI Doc URLhttp://hdl.handle.net/2115/15483 Right Type bulletin Additional Information File Information 43(3)_p153-171.pdf

More information

Title モンゴル 国 の 農 業 の 概 要 : 1990 年 以 降 の 市 場 経 済 化 時 代 に 着 目 して Author(s) バトゥール, ソイルカム Citation 農 業 経 営 研 究, 30: 139-158 Issue Date 2004-02 DOI Doc URLhttp://hdl.handle.net/2115/36594 Right Type bulletin

More information

Title 読み書き困難を持つ知的ギフテッドの支援 Author(s) 小泉, 雅彦 Citation 子ども発達臨床研究, 6: 131-136 Issue Date 2014-12-05 DOI Doc URLhttp://hdl.handle.net/2115/57586 Right Type bulletin (article) Additional Information File Information

More information

Title 米西戦争 フィリピン戦争における男らしさ Author(s) 兼子, 歩 Citation 西洋史論集, 3: 50-75 Issue Date 2000-03-08 DOI Doc URLhttp://hdl.handle.net/2115/37432 Right Type bulletin (article) Additional Information File Information

More information

Title インターネットと 北 海 道 への 中 国 人 観 光 者 : おける 質 的 オンライン 研 究 の 応 用 について 観 光 研 究 に Author(s) 周, 菲 菲 Citation 研 究 論 集 = Research Journal of Graduate 12: 85( 左 )-102( 左 ) Issue Date 2012-12-26 DOI Doc URLhttp://hdl.handle.net/2115/51962

More information

Title 審判による扶養料支払の始期について Author(s) 石川, 恒夫 Citation 法學會論集, 11(2): 116-125 Issue Date 1961-03-25 DOI Doc URLhttp://hdl.handle.net/2115/17066 Right Type bulletin Additional Information File Information 11(2)_p116-125.pdf

More information

Titleゼニゴケの 培 養 法 Author(s) 大 和, 勝 幸 ; 石 崎, 公 庸 ; 河 内, 孝 之 Citation Issue Date 2009-03-31 DOI Doc URLhttp://hdl.handle.net/2115/39086 Right Type bulletin (article) Additional Information File Information

More information

Title 地方都市における子育てと資源 : 保育所利用世帯に焦点をあてて Author(s) 保田, 真希 Citation 教育福祉研究, 20: 59-94 Issue Date 2015-03-25 DOI Doc URLhttp://hdl.handle.net/2115/58346 Right Type bulletin (article) Additional Information

More information

Title ビル暖房の実態調査 Author(s) 沢登, 龍彦 ; 落藤, 澄 ; 浅野, 賢二 Citation 衛生工学, 13: 31-47 Issue Date 1966-11 DOI Doc URLhttp://hdl.handle.net/2115/36184 Right Type bulletin Additional Information File Information 13_31-48.pdf

More information

Title 藻 汐 草 の 一 冊 本 について Author(s) 佐 藤, 知 己 Citation 北 海 道 大 学 文 学 研 究 科 紀 要 = The Annual Report on Science, 121: 左 157- 左 170 Issue Date 2007-02-20 DOI Doc URLhttp://hdl.handle.net/2115/18912 Right Type

More information

Title 圏 論 と 構 造 主 義 Author(s) 深 山, 洋 平 Citation 研 究 論 集 = Research Journal of Graduate 12: 31( 左 )-46( 左 ) Issue Date 2012-12-26 DOI Doc URLhttp://hdl.handle.net/2115/51910 Right Type bulletin (article)

More information

Titleブラジルの 違 憲 審 査 制 度 Author(s) ロドリゲス=ヴィエラ, パウロ; 下 井, 康 史 ( 訳 ) Citation 北 大 法 学 論 集, 42(6): 1-30 Issue Date 1992-07-31 DOI Doc URLhttp://hdl.handle.net/2115/16853 Right Type bulletin Additional Information

More information

Title 新 < 起承転結 > 考 I Author(s) 高橋, 吉文 Citation メディア コミュニケーション研究 = Media and Communication Studies, 55: 39-118 Issue Date 2009-03-25 DOI Doc URLhttp://hdl.handle.net/2115/38486 Right Type bulletin (article)

More information

Title 在日ブラジル人の定住化とその意識 Author(s) 濱田, 国佑 Citation 北海道大学大学院教育学研究科紀要, 97: 225-239 Issue Date 2005-12-20 DOI 10.14943/b.edu.97.225 Doc URLhttp://hdl.handle.net/2115/14692 Right Type bulletin Additional Information

More information

Title 実 験 的 クロリネーションに 於 ける2,3の 問 題 : その2. 複 活 現 象 と 残 留 塩 素 について Author(s) 島 貫, 光 治 郎 Citation 衛 生 工 学, 2: 128-141 Issue Date 1959-03 DOI Doc URLhttp://hdl.handle.net/2115/36133 Right Type bulletin Additional

More information

Title 臨 床 心 理 学 における 事 例 研 究 の 役 割 に 関 する 考 察 Author(s) 渡 邊, 誠 Citation 北 海 道 大 学 大 学 院 教 育 学 研 究 院 紀 要, 118: 225-234 Issue Date 2013-06-30 DOI 10.14943/b.edu.118.225 Doc URLhttp://hdl.handle.net/2115/52902

More information

Title 野村真紀助教授の経歴と業績 Author(s) 権左, 武志 Citation 北大法学論集, 55(3): 327-337 Issue Date 2004-09-15 DOI Doc URLhttp://hdl.handle.net/2115/15310 Right Type bulletin Additional Information File Information 55(3)_p327-337.pdf

More information

Title ゲルマン語の歴史と構造 (1) : 歴史言語学と比較方法 Author(s) 清水, 誠 Citation 北海道大学文学研究科紀要 = The Annual Report on Science, 131: 1( 左 )-40( 左 ) Issue Date 2010-07-20 DOI Doc URLhttp://hdl.handle.net/2115/43276 Right Type

More information

Title 教 材 研 究 授 業 報 告 : 全 学 生 向 け 映 像 授 業 ( 外 国 映 画 ) Author(s) 西, 昌 樹 Citation メディア コミュニケーション 研 究 = Media and Communication Studies, 62: 59-72 Issue Date 2012-05-25 DOI Doc URLhttp://hdl.handle.net/2115/49294

More information

Title 養育費支払義務をめぐる諸問題 Author(s) 石川, 恒夫 Citation 北大法学論集 = THE HOKKAIDO LAW REVIEW, 1 100-109 Issue Date 1961-09 DOI Doc URLhttp://hdl.handle.net/2115/27797 Right Type bulletin Additional Information File

More information

Title ササ属植物の形質変異に関する研究 (1) Author(s) 新宮, 弘子 ; 伊藤, 浩司 Citation 環境科学 : 北海道大学大学院環境科学研究科紀要, 6(1): 117-150 Issue Date 1983-12-20 DOI Doc URLhttp://hdl.handle.net/2115/37152 Right Type bulletin (article) Additional

More information

大 学 文 書 館 業 務 記 録 (2015 年 1 月 ~12 月 ) : 大 学 文 書 館 業 務 Title日 誌 (2015 年 1 月 ~12 月 ) : 大 学 文 書 館 利 用 状 況 (2015 年 1 月 ~12 月 ) : 大 学 文 書 館 構 成 : 大 学 文 書 館 年 報 編 集 Author(s) Citation 北 海 道 大 学 大 学 文 書 館 年 報

More information

Title 日本法と外国法 : 法継受論 (1) Author(s) 木下, 毅 Citation 北大法学論集, 46(2): 204-174 Issue Date 1995-09-04 DOI Doc URLhttp://hdl.handle.net/2115/15609 Right Type bulletin Additional Information File Information 46(2)_p204-174.pdf

More information

Title 講座担任者から見た憲法学説の諸相 - 日本憲法学史序説 - Author(s) 高見, 勝利 Citation 北大法学論集, 52(3): 1-38 Issue Date 2001-11-20 DOI Doc URLhttp://hdl.handle.net/2115/15092 Right Type bulletin Additional Information File Information

More information

Titleホログラム 原 画 作 成 用 CGシステムの 開 発 Author(s) 青 木, 由 直 ; 成 瀬, 智 之 Citation 北 海 道 大 學 工 學 部 研 究 報 告 = Bulletin of the Facu Engineering, Hokkaido University, 1 Issue Date 1990-02-28 DOI Doc URLhttp://hdl.handle.net/2115/42210

More information

~ 料 ii

~ 料 ii Title 札 幌 農 学 校 トルストイ 日 露 戦 争 - 一 学 生 の 日 記 と 回 想 - Author(s) 松 澤, 弘 陽 Citation 北 大 法 学 論 集, 39(5-6 下 ): 659-678 Issue Date 1989-10-31 DOI Doc URLhttp://hdl.handle.net/2115/16668 Right Type bulletin Additional

More information

Title 就 学 援 助 制 度 の 現 状 と 課 題 Author(s) 小 西, 祐 馬 Citation 北 海 道 大 学 大 学 院 教 育 学 研 究 科 紀 要, 95: 191-205 Issue Date 2004-12 DOI 10.14943/b.edu.95.191 Doc URLhttp://hdl.handle.net/2115/28952 Right Type bulletin

More information

Title 拒 絶 の 精 神 としてのメタファー Author(s) 大 木, 文 雄 Citation メディア コミュニケーション 研 究 = Media and Communication Studies, 58: 17-38 Issue Date 2010-05-25 DOI Doc URLhttp://hdl.handle.net/2115/43194 Right Type bulletin

More information

Title 葉霊鳳に関するこれまでの評価について Author(s) 余, 迅 Citation 研究論集 = Research Journal of Graduate Letters, 14: 187( 左 )-203( 左 ) Issue Date 2014-12-20 DOI Doc URLhttp://hdl.handle.net/2115/57702 Right Type bulletin

More information

Title インターネットの音声データベース : その現状と将来 Author(s) 小野, 芳彦 Citation 北海道大学文学研究科紀要 = The Annual Report on Science, 101: 151-168 Issue Date 2000-09-14 DOI Doc URLhttp://hdl.handle.net/2115/33973 Right Type bulletin

More information

Title 南 洋 時 事 研 究 Author(s) 亀 井, 秀 雄 Citation 北 大 百 二 十 五 年 史, 論 文 資 料 編 : 54-110 Issue Date 2003-02-21T08:14:25Z DOI Doc URLhttp://hdl.handle.net/2115/30000 Right Type bulletin Additional Information

More information

untitled

untitled 2011/6/22 M2 1*1+2*2 79 2F Y YY 0.0 0.2 0.4 0.6 0.8 0.000 0.002 0.004 0.006 0.008 0.010 0.012 1.0 1.5 2.0 2.5 3.0 3.5 4.0 Y 0 50 100 150 200 250 YY A (Y = X + e A ) B (YY = X + e B ) X 0.00 0.05 0.10

More information

Title 手 稲 山 におけるraint-out 効 果 の 観 測 Author(s) 木 村, 勉 ; 村 上, 正 隆 ; 遠 藤, 辰 雄 Citation 環 境 科 学 : 北 海 道 大 学 大 学 院 環 境 科 学 研 究 科 紀 要, 4(2): 223-232 Issue Date 1982-03-25 DOI Doc URLhttp://hdl.handle.net/2115/37113

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

Title 性教育をめぐる政治と文化 Author(s) 猪瀬, 優理 Citation 北海道大学文学研究科紀要 = The Annual Report on Science, 125: 135( 左 )-168( 左 ) Issue Date 2008-06-20 DOI Doc URLhttp://hdl.handle.net/2115/33923 Right Type bulletin Additional

More information

Title 昆 布 食 類 型 分 布 の 研 究 :Ⅱ. 昆 布 食 類 型 分 布 の 歴 史 的 意 義 づけ Author(s) 大 石, 圭 一 北 海 道 大 學 水 産 學 部 研 究 彙 報 = BULLETIN OF THE Citation FACULTY OF FISHERIES HOKKAIDO UNIVE 33(3): 188-199 Issue Date 1982-09

More information

BMIdata.txt DT DT <- read.table("bmidata.txt") DT head(dt) names(dt) str(dt)

BMIdata.txt DT DT <- read.table(bmidata.txt) DT head(dt) names(dt) str(dt) ?read.table read.table(file, header = FALSE, sep = "", quote = "\" ", dec = ".", numerals = c("allow.loss", "warn.loss", "no.loss"), row.names, col.names, as.is =!stringsasfactors, na.strings = "NA", colclasses

More information

Title ヴェニスの 商 人 : 贈 与 のトポス Author(s) 小 川, 泰 寛 Citation メディア コミュニケーション 研 究 = Media and Communication Studies, 53: 27-67 Issue Date 2007-12-14 DOI Doc URLhttp://hdl.handle.net/2115/34559 Right Type bulletin

More information

Title 母子世帯の家計と管理 : 子どもの教育 進学の問題に関連して Author(s) 鳥山, まどか Citation 教育福祉研究 = Journal of Education and S 36 Issue Date 2003-03 DOI Doc URLhttp://hdl.handle.net/2115/28357 Right Type bulletin Additional Information

More information

Title 19 世紀から 20 世紀初頭にかけての右岸ウクライナにおけるポーランド ファクター Author(s) 松里, 公孝 Citation スラヴ研究 = Slavic Studies, 45: 101-138 Issue Date 1998-03-31 DOI Doc URLhttp://hdl.handle.net/2115/40177 Right Type bulletin (article)

More information

Title 仮名草子の流行色 ( 二 ) Author(s) 野田, 寿雄 Citation 北海道大學文學部紀要 = The annual reports on science, 8: 103-126 Issue Date 1960-06-30 DOI Doc URLhttp://hdl.handle.net/2115/33254 Right Type bulletin Additional Information

More information

Title 顔之推伝研究 Author(s) 佐藤, 一郎 Citation 北海道大學文學部紀要 = The annual reports on science, 18(2): 1-23 Issue Date 1970-03-30 DOI Doc URLhttp://hdl.handle.net/2115/33345 Right Type bulletin Additional Information

More information

Title 初期の近代オリンピックとネイション概念の変容 チェコ オリンピック委員会の動向をもとに Author(s) 福田, 宏 Citation 北大法学論集, 50(4): 434-388 Issue Date 1999-11-30 DOI Doc URLhttp://hdl.handle.net/2115/14976 Right Type bulletin Additional Information

More information

Title 外 国 人 の 周 辺 化 と 日 本 語 教 育 : 栃 木 県 真 岡 市 の 事 例 から Author(s) 矢 板, 晋 Citation 研 究 論 集 = Research Journal of Graduate 12: 433( 左 )-455( 左 ) Issue Date 2012-12-26 DOI Doc URLhttp://hdl.handle.net/2115/51982

More information