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

Size: px
Start display at page:

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

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 kubostat2008b.pdf ( 第 2 回 ) Instructions for use Hokkaido University Collection of Scholarly and Aca

2 ( :11 ) 1 ( ) 5 (+2) 2 ( ) kubo@ees.hokudai.ac.jp R &?! 2 2.? 6 3. : 9 4. λ R? R ( )?

3 ( :11 ) 2 : ( ) / 7 1:?? R & 5?! R 3 R 4 data 5 vector object ( ) 50 R 6 > data [1] [26] data vector object 0 1, 2 ( ) vector [1] [26] 1 26

4 ( :11 ) 3 vector object data R data R 7 8 data 7. R > R 50 data R 9 > length(data) # data? [1] 50 > summary(data) Min. 1st Qu. Median Mean 3rd Qu. Max length() data 50 summary() summary(data) Min. Max. data 1st Qu., Median, 3rd Qu. data 25%, 50%, 75% 8. print(data) 9. R # # 10 Median ( ) 10. (Mean) 3.56 ( ) (variance) > var(data) [1] data ( ) (standard deviation; SD) R > sqrt(var(data)) [1] > sd(data) [1]

5 ( :11 ) ? R 11 > summary(as.factor(data)) > table(data) data (histogram) 11. summary() :-) seq( ) R seq(-0.5, 8.5, 1) > hist(data, breaks = seq(-0.5, 8.5, 1)) Histogram of data Frequency data R ( 50 ) 3.56 (probablistic)

6 ( :11 ) 5? ( ) (Poisson distribution) ? > y <- 0:9 > prob <- dpois(y, lambda = 3.56) > plot(y, prob, type = "b", lty = 2) 14. data ( ) prob y > data.frame(y, prob) # y prob y prob y ( y y {0, 1, 2, 3, }) y ( prob) R y prob dpois(y, lambda =

7 ( :11 ) 6 )? ? ( 3.56 ) (data 50 )? hist() > # data, y, prob > hist(data, breaks = seq(-0.5, 8.5, 1)) lines() 50 > lines(y, prob * 50, type = "b", lty = 2) # 50 Histogram of data R Frequency data? ( 3.56 ) 3.56?? ( )?

8 ( :11 ) 7 2.? ? (probablistic density function) p(y λ) = λy exp( λ) y! p(y λ) 19 ( ) λ y ( : 2 y = 2 ) 19. p(y) y λ exp( y) = e y e (e = ) y! y 4! y = 0, 1, 2, 3,, ( ) p(y λ) = 1 λ (λ 0) y=1 λ : λ = = 21 λ > y <- 0:20 > plot(y, dpois(y, lambda = 3.5), type = "b", lty = 2, pch = 21, + ylab = "prob") > lines(y, dpois(y, lambda = 7.7), type = "b", lty = 2, pch = 23) > lines(y, dpois(y, lambda = 15.1), type = "b", lty = 2, pch = 24) > legend("topright", legend = c(3.5, 7.7, 15.1), pch = c(21, 23, 24), + title = "lambda", cex = 0.7) ( )? 21.! 22. plot() lines() 23. R > +

9 ( :11 ) 8 prob lambda y data (y ) 0, 1, 2, y ( ) 24 > mean(data) # data [1] 3.56 > var(data) # data [1] (event)??

10 ( :11 ) (negative binomial distribution) ? R : data > data [1] [26] ( ) 27 (random number) (sample) sampling 27.

11 ( :11 ) 10 = prob y (, ) : ( )? (estimation) ( 3) prob ? y 3: 1. ( ) X ( X ) 2. X X (parameter) data

12 ( :11 ) 11 R R rpois() data > data <- rpois(50, lambda = 3.5) > data [1] [26] > y <- rpois(50, lambda = 3.5); print(y); print(mean(y)) [1] [26] [1] > y <- rpois(50, lambda = 3.5); print(y); print(mean(y)) [1] [26] [1] 3.14 > y <- rpois(50, lambda = 3.5); print(y); print(mean(y)) [1] [18] [35] [1] λ data

13 ( :11 ) data 2. data 3.56 ( ) λ ?? (maximum likelihood estimation) 31 data i y i {y 1 = 2, y 2 = 2, y 3 = 4,, y 49 = 2, y 50 = 3} λ {y i } = {y 1, y 2, y 3,, y 50 } (likelihood) p(y λ) = λy exp( λ) y! 30. λ 31. ( ) λ L(λ {y i }) = (y 1 2 ) (y 2 2 ) (y 50 3 ) L(λ {y i }) = p(y 1 λ) p(y 2 λ) p(y 3 λ) p(y 50 λ) λ 50 = p(y i λ) i=1 = 50 i=1 λ y i exp( λ) y i! λ λ 33. L(λ {y i }) λ (log likelihood) 34 { } 50 y i log L(λ {y i }) = y i log(λ) λ log(k) i=1 λ log L(λ {y i }) λ k=1 ˆλ 34. log(l) L L log(l)

14 ( :11 ) 13 data λ > lambda <- seq(2, 5, 0.1) > likelihood <- function(lambda) sum(dpois(data, lambda, log = TRUE)) > plot( + lambda, + sapply(lambda, likelihood), + type = "l", + xlab = "lambda", + ylab = "log likelihood" + ) log likelihood lambda ( ) λ log L(λ {y i }) λ 50 { yi } = λ 1 = i=1 50 i=1 y i 50 λ log L(λ {y i }) λ ˆλ 50 i=1 y i 50 = 0 ˆλ ˆλ = 50 i=1 y i 50 = y i = 35 {y i } ˆλ 35. (maximum likelihood estimator) {y 1 = 2, y 2 = 2, y 3 = 4,, y 49 = 2, y 50 = 3} y i ˆλ = 3.56 (maximum likelihood estimate) data 3.56

15 ( :11 ) (quasi likelihood) overdispersion 5. (pesudo likelihood) 0, 1, 2, 0 N y y {0, 1, 2,, N} (binomial distribution) ( ) N p(y N, q) = q y (1 q) N y y Bayesian y {0, 1, 2,, N} > y <- 0:10 > plot(y, dbinom(y, 10, prob = 0.1), type = "b", lty = 2, pch = 21, + ylab = "prob") > lines(y, dbinom(y, 10, prob = 0.3), type = "b", lty = 2, pch = 23) > lines(y, dbinom(y, 10, prob = 0.6), type = "b", lty = 2, pch = 24) > legend("topright", legend = c(0.1, 0.3, 0.6), pch = c(21, 23, 24), + title = "q", cex = 0.7) prob y q N y 4 : 11/10 ( ) (GLM) 2

16 ( :11 ) (normal distribution; :, Gaussian distribution) 37 {1.5, 3.2, 7.7, } µ ± σ > y <- seq(-5, 5, 0.1) > plot(y, dnorm(y, mean = 0, sd = 1), type = "l", + ylab = "prob.density") # > lines(y, dnorm(y, mean = 0, sd = 3), lty = 2) # > lines(y, dnorm(y, mean = 3, sd = 1), lty = 3) # 37.? 38. λ = prob.density y µ σ p(y µ, σ) = 1 µ)2 exp( (y ) 2πσ 2 2σ cm 5 cm cm 178 cm 40.

17 ( :11 ) 16 > pnorm(178, mean = 170, sd = 5) - pnorm(177, mean = 170, sd = 5) [1] > dnorm(177.5, mean = 170, sd = 5) * 1.0 # [1] cm > pnorm(178, mean = 170, sd = 5) - pnorm(178, mean = 170, sd = 5) [1] 0 > dnorm(178, mean = 170, sd = 5) [1] {y i } (i = 1, 2,, N) L(y i µ, σ) = = N p(y µ, σ) y i=1 N 1 exp( (y i µ) 2 ) y 2πσ 2 2σ 2 i=1 y ( : 0.1 cm ) 41 p(y µ, σ) ( ) drnorm() log L(y i µ, σ) = N 0.5N log(2πσ 2 i=1 ) i µ) 2 + N y 2σ 2 σ µ 43 log L(y i µ, σ) 43. N y N i=1 (y i µ) 2 N 2σ 2 i=1 (y i µ) 2 (

18 ( :11 ) 17 ) ˆµ σ 7.? 1.? : {, }, : {0.56, 1.33, 12.4, 9.84, } 2.? {0, 1,, N}, {0, 1,, }, [y min, y max ], [, ], 3. ( )?,,, n, : : < : ({0, 1, 2,, N}) : [, + ] : [0, + ] : [0, + ] : [0, 1]

19 ( :11 ) 18 R ( ) rbinom() glm(family = binomial) rbinom() glm(family = binomial) rpois() glm(family = poisson) rnbinom() glm.nb() ( ) rgamma() glm(family = gamma) rnorm() glm(family = gaussian) glm() 3 : (GLM) 1 N p {0, 1, 2,, N} N = 1 {0, 1} :,, / 7 4:

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

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

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

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

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

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

-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

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

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

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

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

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 北 海 道 大 学 農 学 部 技 術 部 研 究 技 術 報 告, 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

~ß 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

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

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 北 大 法 学 論 集 = 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 北海道大学大学院教育学研究科紀要, 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

(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

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 北海道大学大学院農学研究科技術部研究 技術報告, 12: 11-15 Issue Date 2005-03 DOI Doc URLhttp://hdl.handle.net/2115/35477 Right Type bulletin Additional Information File Information 12_p11-15.pdf

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

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

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

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

Title 言語的修復行動における他者開始について : 形式整理と分類基準を中心として Author(s) 張, 玲玲 Citation 研究論集 = Research Journal of Graduate 12: 249( 左 )-266( 左 ) Issue Date 2012-12-26 DOI Doc URLhttp://hdl.handle.net/2115/51971 Right Type

More information

Title ブランド 危 機 におけるブランド ロイヤルティ : ネット 上 の 書 き 込 み 内 容 分 析 による 考 察 Author(s) 北 見, 幸 一 Citation メディア コミュニケーション 研 究 = Media and Communication Studies, 61: 5-33 Issue Date 2011-11-25 DOI Doc URLhttp://hdl.handle.net/2115/47572

More information

Title 日本法と外国法 : 法継受論 (2) Author(s) 木下, 毅 Citation 北大法学論集, 46(4): 394-360 Issue Date 1995-11-29 DOI Doc URLhttp://hdl.handle.net/2115/15625 Right Type bulletin Additional Information File Information 46(4)_p394-360.pdf

More information

Title 倭 名 類 聚 抄 諸 本 の 出 典 について Author(s) 宮 澤, 俊 雅 Citation 北 海 道 大 學 文 學 部 紀 要 = The annual reports on science, 45(2): 1-29 Issue Date 1997-01-24 DOI Doc URLhttp://hdl.handle.net/2115/33679 Right Type

More information

Titleイスラエル 宗 教 連 合 ( 続 ) : ヤハウエ 礼 拝 の 発 展 Author(s) 宇 野, 光 雄 Citation 北 海 道 大 學 文 學 部 紀 要 = The annual reports on science, 10: 65-85 Issue Date 1961-11-10 DOI Doc URLhttp://hdl.handle.net/2115/33265 Right

More information

Title 劉基 郁離子 の研究 Author(s) 松川, 健二 Citation 北海道大學文學部紀要 = The annual reports on science, 20(1): 131-224 Issue Date 1972-03-10 DOI Doc URLhttp://hdl.handle.net/2115/33367 Right Type bulletin Additional Information

More information

Title 我国における着色料取締りの歴史 : 歴史的経緯からみた着色料の存在意義 Author(s) 光武, 幸 Citation 北海道大学大学院環境科学研究科邦文紀要, 1: 1-23 Issue Date 1985-03-23 DOI Doc URLhttp://hdl.handle.net/2115/37070 Right Type bulletin (article) Additional

More information

Title 金 子 洋 之 ダメットにたどりつくまで ( 勁 草 書 房 二 〇 〇 六 年 ) Author(s) 中 川, 大 Citation 哲 学 = Annals of the Philosophical So University, 44: 241-245 Issue Date 2008-02-29 DOI Doc URLhttp://hdl.handle.net/2115/35066

More information

Title 食 品 添 加 物 の 必 要 性 の 判 断 に 影 響 する 要 因 の 分 析 Author(s) 光 武, 幸 ; 岩 田, 昇 Citation 北 海 道 大 学 大 学 院 環 境 科 学 研 究 科 邦 文 紀 要, 3: 81-90 Issue Date 1987-08-17 DOI Doc URLhttp://hdl.handle.net/2115/37075 Right

More information

PackageSoft/R-033U.tex (2018/March) R:

PackageSoft/R-033U.tex (2018/March) R: ................................................................................ R: 2018 3 29................................................................................ R AI R https://cran.r-project.org/doc/contrib/manuals-jp/r-intro-170.jp.pdf

More information

Title 日 本 カトリック 教 会 旭 川 五 条 教 会 の 聖 堂 とその 変 遷 : 北 海 道 のキリスト 教 会 と 教 会 建 築 (その 四 ) Author(s) 川 島, 洋 一 Citation 基 督 教 学 = Studium Christianitatis, 25: Issue Date 1990-07-05 DOI Doc URLhttp://hdl.handle.net/2115/46486

More information

Title 有 界 変 数 法 を 用 いた2 次 計 画 法 のコードの 作 成 Author(s) 戸 田, 悟 ; 大 堀, 隆 文 ; 藤 田, 克 孝 ; 大 内, 東 ; 加 地, 郁 Citation 北 海 道 大 學 工 學 部 研 究 報 告 = Bulletin of the Facu Engineering, Hokkaido University, 7 Issue Date

More information

Title 乳 牛 経 済 検 定 の5ヵ 年 の 歩 み Author(s) 厚 海, 忠 夫 ; 近 藤, 邦 広 Citation 季 刊 農 業 経 営 研 究, 2: 33-48 Issue Date 1956-07-20 DOI Doc URLhttp://hdl.handle.net/2115/36244 Right Type bulletin Additional Information

More information

Title 肢 体 不 自 由 者 の 外 出 行 動 に 関 わる 影 響 要 因 について Author(s) 浅 賀, 忠 義 ; 黒 澤, 和 隆 Citation 北 海 道 大 学 医 療 技 術 短 期 大 学 部 紀 要, 7: 1-10 Issue Date 1994-12 DOI Doc URLhttp://hdl.handle.net/2115/37576 Right Type

More information

Title 幼児教育環境と幼児の共発達に関する生態 文化的アプローチ⑴ : 研究の視点とフィールドの特性 Author(s) 川田, 学 ; 井内, 聖 Citation 子ども発達臨床研究, 5: 35-57 Issue Date 2014-03-25 DOI Doc URLhttp://hdl.handle.net/2115/54979 Right Type bulletin (article)

More information