untitled

Size: px
Start display at page:

Download "untitled"

Transcription

1 R M1 M2 1 8 Takahashi, Y., Roberts, B.W., Yamagata, S., & Kijima, N. (in press). Personality traits show differential relations with anxiety and depression in a non-clinical sample. Psychologia: An International Journal of Psychological Sciences. 2 (BIS BAS) 2 ( ), 2 ( ) ( ) 2

2 BIS BAS BAS,,, 2 (Gray, 1970) (Behavioral Inhibition System: BIS), (Behavioral Activation/Approach System: BAS), BIS BAS 3 BIS, BAS (e.g. Kimbrel et al., 2007), BAS (Johnson et al., 2003), (Coplan et al., 2006)? (BIS) (BAS) 4

3 BIS BAS 2, BAS ( ), Time 1 BIS/BAS (Carver & White, 1994;, 2007) (Zung, 1965) (Spielberger et al., 1970) (2 ) Time 2 (Zung, 1965) (Spielberger et al., 1970) 6

4 (2007) 7 depanx <- read.csv( depanx.csv ) # head(depanx) # bis 1~7 (4, 7 ) bas 1~13 (4, 13 ) a01_t1 ~ a20_t1 1 (4, 20 ) d01_t1 ~ d20_t1 1 (4, 20 ) a01_t2 ~ a20_t2 2 (4, 20 ) d01_t2 ~ d20_t2 2 (4, 20 ) 8

5 BIS 2 (4, 5) BIS BAS attach(depanx) # depanx$bis1r <- 5 - bis1 # depanx$bis6r <- 5 - bis6 # detach(depanx) # depanx attach(depanx) # depanx$bis_t1 <- bis1r + bis2 + bis3 + bis4 + bis5 + bis6r + bis7 #BIS ( ) depanx$bas_t1 <- bas1 + bas2 + bas3 + bas4 + bas5 + bas6 + bas7 + bas8 + bas9 + bas10 + bas11 + bas12 + bas13 #BAS 9 rowsums (), colsum () depanx$anx_t1 <- rowsums(depanx [c(24:43)]) # 1 depanx$dep_t1 <- rowsums(depanx [c(44:63)]) # 1 depanx$anx_t2 <- rowsums(depanx [c(64:83)]) # 2 depanx$dep_t2 <- rowsums(depanx [c(84:103)]) # 2 detach(depanx) attach(depanx) depanx1 <- cbind(sex, age, bis_t1, bas_t1, anx_t1, dep_t1, anx_t2, dep_t2) # 6 depanx1 <- data.frame(depanx1) # attach(depanx1) # library(psych) #psych describe(depanx1) # 10

6 ( 1 ) alpha(depanx [c(24:43)]) #1 alpha(depanx [c(44:63)]) # 1, BIS =0.80, BAS =0.81,1 =0.90, 1 =0.81,2=0.91 2= BIS BAS( ) round(cor(depanx1[,3:8], use="pairwise.complete.obs"), 2) 2, 揃 complete.obs 12

7 pairs (depanx1 [,3:8]), BIS 1, BAS cor.test () X Y Z,, BAS X <- cor(depanx1 [,c("bas_t1", "dep_t1", "anx_t1")], use="pairwise.complete.obs") #3 library(psych) #psych partial.r(x, c(1, 2), 3) # X

8 Y <- cor(depanx1 [,c("bas_t1", "dep_t2", "anx_t2")], use="pairwise.complete.obs") library(psych) partial.r(y, c(1, 2), 3) 12, 5% 15 corpcor cor to pcor X <- cor(depanx1 [,c("bas_t1", "dep_t1", "anx_t1")], use="pairwise.complete.obs") #3 install.packages("corpcor") #corpcor library(corpcor) #corpcor X.pcor <- cor2pcor(x) rownames(x.pcor) <- rownames(x) # colnames(x.pcor) <- colnames(x) # X.pcor 16

9 1 BIS BAS 17 y ) = a ( ) + b ( ) x + e ( ) y^ ( ) = a ( ) + b ( ) x ( - ) 2 reg.anx_t1 <- lm(anx_t1 ~ bis_t1, data = depanx1) summary(reg.anx_t1) 18

10 ( ) (R 2 ) F p, = BIS BIS , BIS ( ) X Y =X Y (Y /X ) X Y ( 0, 1), SDx <- sd (bis_t1, na.rm = TRUE) SDy <- sd (anx_t1, na.rm = TRUE) R <- cor (anx_t1, bis_t1, use="pairwise.complete.obs ) B <- R * ( SDy / SDx ) B

11 ( ) 1 BIS reg.bis_t1 <- lm(bis_t1 ~ anx_t1, data = depanx1) summary(reg.bis_t1), BIS = BIS 14.86, 1 BIS ( ),, z.depanx1 <- scale(depanx1) # z.depanx1 <- data.frame(z.depanx1) # attach(z.depanx1) # reg.z.anx_t1 <- lm(anx_t1 ~ bis_t1, data = z.depanx1) summary(reg.z.anx_t1), 2 22

12 plot(anx_t1 ~ bis_t1, data = depanx1, xlab="bis", ylab=" ") # abline (reg.anx_t1) # X Y 23, 100, 95 confint (reg.z.anx_t1, level = 0.95) 95% range <- data.frame (bis_t1 = seq (7, 28, 1)) # range reg.anx_t1_95ci <- predict (reg.anx_t1, range, interval = "confidence") # reg.anx_t1_95ci matplot (range, reg.anx_t1_95ci, lty=c(1, 2, 2), type="l", add=true) # 24

13 (21.93) ( ) () 25,, 1 26

14 mreg.anx_t2 <- lm(anx_t2 ~ bis_t1 + bas_t1, data = z.depanx1) summary(mreg.anx_t2), 2,BIS BAS BIS 1, mreg.dep_t2 <- lm(dep_t2 ~ bis_t1 + bas_t1, data = z.depanx1) summary(mreg.dep_t2), 2,BIS BAS BIS 1, 2.37, BAS 1,

15 ,, install.packages ( car ) #car library (car) #car mreg.anx_t2 <- lm (anx_t2 ~ bis_t1 + bas_t1, data = z.depanx1) # vif (mreg.anx_t2) #VIF mreg.dep_t2 <- lm (dep_t2 ~ bis_t1 + bas_t1, data = z.depanx1) vif (mreg.dep_t2) 29 VIF,,, 0.2VIF 5, 80, VIF 1, (BIS BAS ) 30

16 , ( ), 1 2 (2 ) 3 BIS BAS 31, 2 z.depanx1.nona <- na.omit (z.depanx1) # attach (z.depanx1.nona) # reg1 <- lm (dep_t2 ~ sex + age, data = z.depanx1.nona) #1 summary (reg1) reg2 <- lm (dep_t2 ~ sex + age + anx_t2, data = z.depanx1.nona) #2 summary (reg2) reg3 <- lm(dep_t2 ~ sex + age + anx_t2 + bis_t1 + bas_t1, data = z.depanx1.nona) # 3 summary (reg3) anova (reg1, reg2, reg3) # 32

17 Step1 Step2 Step3 33 2, BIS BAS 2 (2) 34

18 , 2 z.depanx1.nona <- na.omit (z.depanx1) # attach (z.depanx1.nona) # reg1 <- lm (anx_t2 ~ sex + age, data = z.depanx1.nona) #1 summary (reg1) reg2 <- lm (anx_t2 ~ sex + age + dep_t2, data = z.depanx1.nona) #2 summary (reg2) reg3 <- lm(anx_t2 ~ sex + age + dep_t2 + bis_t1 + bas_t1, data = z.depanx1.nona) # 3 summary (reg3) anova (reg1, reg2, reg3) # 35, () 36

19 BAS, BAS BIS BAS 37 8 (cor()) (pairs()) (partial.r(),cor2pcor()) / (lm()) (lm()) (abline()) (confint(),predict()) (matplot()) VIF (vif() ) 38

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

kenkyujo_kiyo_09.ren

kenkyujo_kiyo_09.ren 立正大学心理学研究所紀要 第9号 (2011) 付表1 94 F p F p F p F p F P T F P T F P T F P T Neuron Evolutionary Psychology Behavioral and Brain Sciences Journal of Personality and Social Psychology Journal of Personality

More information

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

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

More information

STEP1 STEP3 STEP2 STEP4 STEP6 STEP5 STEP7 10,000,000 2,060 38 0 0 0 1978 4 1 2015 9 30 15,000,000 2,060 38 0 0 0 197941 2016930 10,000,000 2,060 38 0 0 0 197941 2016930 3 000 000 0 0 0 600 15

More information

1

1 1 2 3 4 5 6 7 8 9 0 1 2 6 3 1 2 3 4 5 6 7 8 9 0 5 4 STEP 02 STEP 01 STEP 03 STEP 04 1F 1F 2F 2F 2F 1F 1 2 3 4 5 http://smarthouse-center.org/sdk/ http://smarthouse-center.org/inquiries/ http://sh-center.org/

More information

P072-076.indd

P072-076.indd 3 STEP0 STEP1 STEP2 STEP3 STEP4 072 3STEP4 STEP3 STEP2 STEP1 STEP0 073 3 STEP0 STEP1 STEP2 STEP3 STEP4 074 3STEP4 STEP3 STEP2 STEP1 STEP0 075 3 STEP0 STEP1 STEP2 STEP3 STEP4 076 3STEP4 STEP3 STEP2 STEP1

More information

2 3

2 3 Sample 2 3 4 5 6 7 8 9 3 18 24 32 34 40 45 55 63 70 77 82 96 118 121 123 131 143 149 158 167 173 187 192 204 217 224 231 17 285 290 292 1 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

More information

人文論究65‐4(よこ)(P)Y☆/4.高橋

人文論究65‐4(よこ)(P)Y☆/4.高橋 2014 10,044 82.8 2014 1 2 1 Khantzian Albanese dependence addiction 2012 Carbonell, Guardiola, Beranuy, & Bellés, 2009 DSM-5 APA, 2013 2014 Internet gaming disorder Internet addiction self-medication hypothesis

More information

大谷教育福祉研究 39号☆/1.熊野

大谷教育福祉研究 39号☆/1.熊野 2 5 4 30 846 418 428 SWLSPANAS e.g. 2012 e.g. 20062006 2011 a2011 b 2 20121 2 2 2 2011 c2012 1 Figure 1 2 2006 2 2 1966 20122006 2012 30 Figure 1 2 4 2 5 4 2012 2011 Diener1984 the Satisfaction with Life

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

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

More information

untitled

untitled 2007 The Self-Esteem of Amyotrophic Lateral Sclerosis Patients at Home Receiving Care for Excretion 2008.8.31-1 - - 3 - - 5 - ALS - 8 - - 12-5 - 24 - ALS ALS ALS - 36 - - 37 - - 38 - - 2 - Amyotrophic

More information

win版8日目

win版8日目 8 日目 : 項目のチェック (2) 1 日 30 分くらい,30 日で何とか R をそこそこ使えるようになるための練習帳 :Win 版 昨日は, 平均値などの基礎統計量を計算する試行錯誤へご招待しましたが (?), 今日は簡 単にやってみます そのためには,psych というパッケージが必要となりますが, パッケー ジのインストール & 読み込みの詳しい方法は, 後で説明します 以下の説明は,psych

More information

日本統計学会誌, 第44巻, 第2号, 251頁-270頁

日本統計学会誌, 第44巻, 第2号, 251頁-270頁 44, 2, 205 3 25 270 Multiple Comparison Procedures for Checking Differences among Sequence of Normal Means with Ordered Restriction Tsunehisa Imada Lee and Spurrier (995) Lee and Spurrier (995) (204) (2006)

More information

研究論集Vol.16-No.2.indb

研究論集Vol.16-No.2.indb Vol. No. pp. - SSTSST SST Eriko HARADA This study was aimed at students with hearing impairments to improve their social skills and self-esteem by putting social skills training SSTinto practice and discussing

More information

linguistics

linguistics R @ linguistics 2007/08/24 ( ) R @ linguistics 2007/08/24 1 / 24 1 2 R 3 R 4 5 ( ) R @ linguistics 2007/08/24 2 / 24 R R: ( ) R @ linguistics 2007/08/24 3 / 24 R Life is short. Use the command line. (Crawley

More information

(2004) (2002) (2004) ( 1990,Smith,Standinger, & Baltes,1994,Carstensen, et al., 2000) (1990) (2006) - 64 -

(2004) (2002) (2004) ( 1990,Smith,Standinger, & Baltes,1994,Carstensen, et al., 2000) (1990) (2006) - 64 - No.412008 3 Abstract This paper focuses on features of ikigai (purpose in life) in old age and networks surrounding the elderly. It provides a review pioneer research on these and adaptation to old age,

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

Jpn. J. Personality 19(2): (2010)

Jpn. J. Personality 19(2): (2010) 2010 19 2 146 156 2010 1) 2) 2 120 60 2 (e.g., Mikulincer & Shaver, 2007) 1) (B) 20730415 69 2008 2) 3) Hazan & Shaver (1987) (Mikulincer & Shaver, 2007) 3 3 3 1 3) 2 2 (e.g., 2001) (Bowlby, 1969/1982)

More information

untitled

untitled R kiyo@affrc.go.jp 1 Excel 1, 2.6, 2/3, 105.2, 0.0043 1, 3, 0, 245 A, B, C... ; 0 1 0.2, 3/4, 0.99 MS Excel»» R Macintosh MS Excel Excel Excel MS Excel MS Access Excel R R R R.Data win Mac ctrl + R Win,

More information

282-253_Y13™n‹ä

282-253_Y13™n‹ä . web web 1.1 Bühler 1921Bühler 1967 1969 Bühler 253 2009 Allport 1942 1970 1986 1972 Allport 1942 1970 97 198631 Bühler 3 6 1967 130 46 254 1950 1938 3,563 6 5 4 56 5 1 23 255 2009 5 1972Bühler 6 19551,751

More information

大谷女子大学紀要(よこ)51☆/7.田沢

大谷女子大学紀要(よこ)51☆/7.田沢 Erikson, 1950/1959 1993 1991 2005 Hazan & Shaver, 1987 Internal Working Models : IWM Hazan & Shaver, 198720032008 2016 2008Bowlby1973/2000 Bowlby, 1973/2000 2008 2006 4 3 2008Bartholomew & Horowitz1991

More information

untitled

untitled 37 Adams 38 39.. 40 SESRA-S the Scale of the Egalitarian Sex Role Attitudes : SESRA SESRA SESRA 41 SESRA SESRA SESRA SESRA SESRAr.r.r. SESRA r.r.r=. 42 =. =. =. =. =. =. =. Adams & Jones, Johnson, Johnson,

More information

pressnet_g36ill.indd

pressnet_g36ill.indd CONTENTS 04 06 08 10 12 14 15 16 18 20 21 22 23 24 25 26 28 30 DATA DATA DATA DATA DATA DATA DATA DATA DATA DATA 32 33 34 36 38 40 41 42 DATA DATA DATA DATA DATA DATA 43 02 CONTENTS 04 06 08 10 12 03 TOPICS

More information

ren

ren 51 * 1 1 IT 24 2010 NHK 2010 7.14 1960 1.08 OECD 2 5 1 2011 4 World Association of Sleep Medicine WASM 3 18 World Sleep Day 2011 11 30 no. 22730552 9 3 1 4,000 5,000 1998 4 4.4 3.3 Matsuda, 2011 Cognitive

More information

R による統計解析入門

R による統計解析入門 R May 31, 2016 R R R R Studio GUI R Console R Studio PDF URL http://ruby.kyoto-wu.ac.jp/konami/text/r R R Console Windows, Mac GUI Unix R Studio GUI R version 3.2.3 (2015-12-10) -- "Wooden Christmas-Tree"

More information

Jpn. J. Personality 19(2): (2010)

Jpn. J. Personality 19(2): (2010) 2010 19 2 81 93 2010 1),2) (borderline personality disorder: BPD) BPD BPD 1 2 452 (the Abandonment Schema Questionnaire: ASQ) ASQ 3 3 253 BPD BPD ASQ (borderline personality disorder: BPD) 1995 BPD BPD

More information

THE JAPANESE JOURNAL OF PERSONALITY 2007, Vol. 15 No. 2, 217–227

THE JAPANESE JOURNAL OF PERSONALITY 2007, Vol. 15 No. 2, 217–227 2007 15 2 217 227 2007 1 2 445 238 207 1 7 7 (2005) (2005) (2006a) 2006a (2004) (assumed-competence) 218 15 2 1 2005 2004 (2004) (2004) (2004) 16PF (2006) 4 Hayamizu, 2002 2006a (2006a) 1 Hayamizu, Kino,

More information

! & # # w w w w w w w w l & w_ # w_ w # w w w # w w # w w # w w w w bw w bw w bw w w bw w b w w_ l !!!!!! 6!!!! 6 ' ' ' ' ' ' ' ' ' ' ' '! ' ' ' ' ' ' ' ' ' ' ' ' ' '! ' ' ' ' ' ' ' ' ' ' '

More information

The Japanese Journal of Psychology 1987, VoL58, No. 1, A Japanese version of the Sensation-Seeking Scale Masaharu Terasaki (Department of Psycho

The Japanese Journal of Psychology 1987, VoL58, No. 1, A Japanese version of the Sensation-Seeking Scale Masaharu Terasaki (Department of Psycho The Japanese Journal of Psychology 1987, VoL58, No. 1, 42-48 A Japanese version of the Sensation-Seeking Scale Masaharu Terasaki (Department of Psychology, Kwansei Gakuin University, Nishinomiya, Hyogo

More information

95 life history Gramling & Carr, 2004 Erikson1963 Levinson 1986 2000 Boyd, Holmes, & Purnell, 1998 Martyn & Belli, 2002 Admi1995 96 54 2000 1 2005 1 2000 0 1 9 5 7 10 14 15 16 17 18 19 21 A 1 2000 1 8

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

untitled

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

More information

No.12‡¨‡à‡Ä

No.12‡¨‡à‡Ä S MORICHI, Shigeru TODOROKI, Tomoyuki 1 1964 3 5 1 71 8 2 2.1 1 Koppelman 2 3 4 5 6 7 8 Vol.4 No.1 21 Spring 8 Diffusion 591 5,6,9,1 2.2 1 2 2 1 11 5 2 1 3 3.1 1 2 1 1 5 155 15 3 15 13 1 1 3 1 1 1 3 Vol.4

More information

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

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

More information

’lŁ¶Ÿ_‰ƒ51†\1(‡æ‡±)/2.‚‚„µ ‹Ë”q

’lŁ¶Ÿ_‰ƒ51†\1(‡æ‡±)/2.‚‚„µ ‹Ë”q Kwansei Gakuin University Rep Title Author(s) 行 動 の 自 己 制 御 機 能 の 自 己 抑 制 的 側 面 について : 先 行 研 究 とその 応 用 について Sogon, Yoriko, 荘 厳, 依 子 ; Imada, Hiros Citation 人 文 論 究, 51(1): 13-27 Issue Date 2001-05-10 URL

More information

T SD SD MSD M SD n n t t R pr p p R R p p pr p pppr p p p pr p p pr p R R R R British Journal of Medical Psychology Journal of abnormal psychology Journal of clinical psychology Journal of affective

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

1.2 R R Windows, Macintosh, Linux(Unix) Windows Mac R Linux redhat, debian, vinelinux ( ) RjpWiki ( RjpWiki Wiki

1.2 R R Windows, Macintosh, Linux(Unix) Windows Mac R Linux redhat, debian, vinelinux ( ) RjpWiki (  RjpWiki Wiki R 2005 9 12 ( ) 1 R 1.1 R R R S-PLUS( ) S version 4( ) S (AT&T Richard A. Becker, John M. Chambers, and Allan R. Wilks ) S S R R S ( ) S GUI( ) ( ) R R R R http://stat.sm.u-tokai.ac.jp/ yama/r/ R yamamoto@sm.u-tokai.ac.jp

More information

04-p45-67cs5.indd

04-p45-67cs5.indd Journal of Sport and Exercise Psychology Motivation in sport and exercise. Journal of Sport and Exercise Psychology Journal of Applied Sport Psychology Psychological Review International Journal of Behavioral

More information

JO52-01

JO52-01 52 Bulletin of Hiroshima Jogakuin University : 1 22 Dec. 2002 1 2002 10 A case study: the counseling process of a mother with a difficult child Kyoko YAMASHITA Abstract I carried out 39 sessions of counseling

More information

2009 Aida et al. Caries Res 2006;40 2000 100 % 78.7 88.0 96.6 98.8 98.8 98.8 100.0 100.0 100 75 69.4 50 75.3 74.8 73.3 73.1 73.0 72.4 71.8 71.7 51.7 40.2 69.4 68.8 73.6 25 22.3 32.8 21.9 22.9 22.1

More information

@081807ヨコ/石山玲子 209号

@081807ヨコ/石山玲子 209号 e.g., Iyenger,; Cappella & Jamieson, e.g., Neuman et al., ; Iyenger, e.g., Gitlin, Neuman Iyengar episodic frame thematic frame Iyengar Gitlin G χ n χp p p e.g., McCombs & Show McCombs, Einsiedel

More information

Development of the Japanese version of the Purpose in Life scale and an investigation of its factors. Abstract This study aims to develop the Japanese

Development of the Japanese version of the Purpose in Life scale and an investigation of its factors. Abstract This study aims to develop the Japanese Title 人 生 における 目 的 尺 度 作 成 とその 規 定 因 の 検 討 Author(s) 中 原, 純 Citation 生 老 病 死 の 行 動 科 学. 13 P.45-P.52 Issue 2008 Date Text Version publisher URL http://doi.org/10.18910/12416 DOI 10.18910/12416 Rights Osaka

More information

取扱説明書 [N-03A]

取扱説明書 [N-03A] 235 1 d dt 2 1 i 236 1 p 2 1 ty 237 o p 238 1 i 2 1 i 2 1 u 239 1 p o p b d 1 2 3 0 w 240 241 242 o d p f g p b t w 0 q f g h j d 1 2 d b 5 4 6 o p f g p 1 2 3 4 5 6 7 243 244 1 2 1 q p 245 p 246 p p 1

More information

Juntendo Medical Journal

Juntendo Medical Journal * Department of Health Science Health Sociology Section, Juntendo University School of Health and Sports Science, Chiba, Japan (WHO: Ottawa Charter for Health promotion, 1986.) (WHO: Bangkok Charter

More information

untitled

untitled CONTENTS P.3 P.5 P.7 P.13 P.21 P.31 P.33 P.3 P.3 P.3 1 2 3 4 4 1 5 6 2 7 8 2 2 9 10 2 2 1000 800 600 400 200 0 3 4 5 11 12 13 14 15 16 17 18 25 1 8 15 22 29 1 18 25 1 6 17 6 8 11 12 3 13 14 15 16 3 311

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

untitled

untitled R 6 1 1 6-1 6,,,,,, &. (2011).., 59(3), 278 294. 2 6-2 3 6-3-1 199 4 A. 57 A1. A2. A3. A4. A5. A6. A7. A8. A9. C. 51 C1. C2. C3. C4. C5. C6. C7. C8. C9. B. 39 B1. B2. B3. B4. B5. D. 52 D1. D2. D3. D4.

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

W 1983 W ± Z cm 10 cm 50 MeV TAC - ADC ADC [ (µs)] = [] (2.08 ± 0.36) 10 6 s 3 χ µ + µ 8 = (1.20 ± 0.1) 10 5 (Ge

W 1983 W ± Z cm 10 cm 50 MeV TAC - ADC ADC [ (µs)] = [] (2.08 ± 0.36) 10 6 s 3 χ µ + µ 8 = (1.20 ± 0.1) 10 5 (Ge 22 2 24 W 1983 W ± Z 0 3 10 cm 10 cm 50 MeV TAC - ADC 65000 18 ADC [ (µs)] = 0.0207[] 0.0151 (2.08 ± 0.36) 10 6 s 3 χ 2 2 1 20 µ + µ 8 = (1.20 ± 0.1) 10 5 (GeV) 2 G µ ( hc) 3 1 1 7 1.1.............................

More information

137 Author s E-mail Address: torii@shoin.ac.jp Relationship between appearance modifying behavior and narcissistic tendency in Japanese males TORII Sakura Faculty of Human Sciences, Kobe Shoin Women s

More information

2 251 Barrera, 1986; Barrera, e.g., Gottlieb, 1985 Wethington & Kessler 1986 r Cohen & Wills,

2 251 Barrera, 1986; Barrera, e.g., Gottlieb, 1985 Wethington & Kessler 1986 r Cohen & Wills, 2014 25 1 1 11 1 3,085 100 1 1988 e.g., 2000 3 e.g., 2005; 1999 100 1960 100 2012 2 6 23 1 98.2 1999 1999 3 65.3 1999 1996 1 21 e.g., 1999 3 1 2 251 Barrera, 1986; 1993 1 2 2001 3 2001 Barrera, 1981 1993

More information

日本化学療法学会雑誌第54巻第S-1号

日本化学療法学会雑誌第54巻第S-1号 β β Key words β Candida krusei Candida glabrata β I β Drugadministration Baselinecharacteristics Clinicalsymptom Mycologicaltests Plasmadrugconcn Adverseevents Laboratorytests ) -leadecg Clinicalphotograph

More information

Graduate School of Clinical Psychology, Kibi International University 8 Iga-machi, Takahashi, Okayama, Japan(716-8508) Research Institute of Clinical Psychology, Kibi International University Department

More information

神山/神山

神山/神山 self presentationimpression management transformation of self Johnson and Lennon, appearance power social power of appearance mental power of appearance French & Raven, reward power A B B coercive power

More information

佐山七生.indd

佐山七生.indd Waist-to-chest ratio WCR Somatotype 2 Waist-to-chest ratio WCR Somatotype 72 M = 26.69 SD = 5.50 WCR Somatotype 24 6 5 ectomorphic endomorphic mesomorphic WCR average WCR 0.7 U WCR Somatotype Waist-to-chest

More information

yamadaiR(cEFA).pdf

yamadaiR(cEFA).pdf R 2012/10/05 Kosugi,E.Koji (Yamadai.R) Categorical Factor Analysis by using R 2012/10/05 1 / 9 Why we use... 3 5 Kosugi,E.Koji (Yamadai.R) Categorical Factor Analysis by using R 2012/10/05 2 / 9 FA vs

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