9.6.3 SPSS (optional) SPSS jpn2003_jpn.sav CSV GRETL pisa2003stu_jpn.csv, pisa2003sch_jpn.csv gretl label SAS SPSS script OECD PISA SAS SPSS csv SPSS

Size: px
Start display at page:

Download "9.6.3 SPSS (optional) SPSS jpn2003_jpn.sav CSV GRETL pisa2003stu_jpn.csv, pisa2003sch_jpn.csv gretl label SAS SPSS script OECD PISA SAS SPSS csv SPSS"

Transcription

1 9.4 PISA Research Questions: 2003 PISA PISA, (170) ( ( ISEI PISA PISA2003 Web site pandas read_csv website >>> import pandas as pd >>> x=pd.read_csv(" >>> print(x.columns) >>> x.shape # OECD (optional) PISA OECD text csv Excel download StQ_CodeBook_2003.pdf 33

2 9.6.3 SPSS (optional) SPSS jpn2003_jpn.sav CSV GRETL pisa2003stu_jpn.csv, pisa2003sch_jpn.csv gretl label SAS SPSS script OECD PISA SAS SPSS csv SPSS SPSS PSPP PISA PISA (PISA2012_SPSS_school.txt ) txt sps SPSS SPS SPSS sps SPSS xxxx d: (CNT= JPN ) csv sav STRATUM PISA STRATUM ISCED SISCED ( A,B,C ) STRATUM Code book STRATUM "390201" "JPN - stratum 01 : 01: Public and Academic" "390202" "JPN - stratum 02 : 02: Public and Practical" "390203" "JPN - stratum 03 : 03: Private and Academic" "390204" "JPN - stratum 04 : 04: Private and Practica" SISCED SISCED (246) Expected educational level of student (ISCED) Format: F1 Columns: ISCED 1 1 ISCED 2 2 ISCED 3B, C 3 ISCED 3A, ISCED 4 4 ISCED 5B 5 ISCED 5A, 4 3A 5A 3B 5B 3C 4 ISCED 34

3 3A - 3A - 3A - 3A - 3A - 3C - () 3C - 3C - 3C - / / 4 / - / / PISA2003 1,2,3 Level-3B 4,5 Level-5B ISCED-3C ISCED-5B - ISCED-5B - ISCED-5A - ISCED-6 - MISCED,FISCED SISCED MISCED,FISCED ST03Q01 PV1MATH-PV5MATH math ESCS White Collar, 6-9 Blue Collar) high skilled white collar (ISCO codes 1,2 and 3) includes legislators, senior officials and managers, professionals and technicians and associate professionals; low skilled white collar (ISCO codes 4 and 5) includes clerks and service workers and shop and market sales workers; high skilled blue collar (ISCO codes 6 and 7) includes skilled agricultural and fishery workers and craft and related trades workers; low skilled blue collar (ISCO codes 8 and 9) includes plant and machine operators and assemblers and elementary occupations. FSECATEG (233) Father White collar/blue collar classification Format: F1 Columns: White Collar high skilled 2 White Collar low skilled 3 Blue Collar high skilled 4 Blue Collar low skilled 9 Missing ESCS SC01Q01 SC01Q01 (5) School location Q1 Format: F1 Columns: Village (less 3 000) 2 Small town (3 000 to ) 3 Town ( to ) 35

4 4 City ( to ) 5 Large city (more ) 7 N/A 8 Invalid 9 Miss 9.7 pivot table: : (ESCS) (ESCS) ( ESCS, : ESCS) : ESCS Oaxaca decomposition: : y = a + b x, ŷ = a + ˆb ˆx, ŷ = y V (y) = y = a + ˆb x V (y) V (x) ˆb ˆb = b V (x) V (y) 9.8 pivot table pandas 36

5 9.8.1 pivot table pivot table DataFrame ( ) 5 x["daigaku"]=x.kitai==16 aa1=pd.pivot_table(data=x,values=[ daigaku, math,"escs"],\ index=["male"], aggfunc="mean") print(aa1) ESCS daigaku math male aa1=pd.pivot_table(data=x,values=[ daigaku, math, kitai,"escs"],\ index=["area"], aggfunc="mean") ESCS daigaku kitai math area # # x["danshiko"]=1*(x.mmale==1) x["joshiko"]=1*(x.mmale==0) x["betsugaku"]=2*(x.mmale==1)+1*(x.mmale==0) x["betsugaku"]=x["betsugaku"].replace(2,"danshiko")# x["betsugaku"]=x["betsugaku"].replace(1,"joshiko") x["betsugaku"]=x["betsugaku"].replace(0,"kyogaku") ESCS daigaku kitai math toshi print(aa1) d=aa1.ix[1]-aa1.ix[0];print(d) #ESCS #daigaku #kitai #math

6 aa1=pd.pivot_table(data=x,values=[ daigaku, math, kitai,"escs"],\ index=["type"], aggfunc="mean") ESCS daigaku kitai math type priv_f priv_s pub_f pub_s aa1=pd.pivot_table(data=x,values=[ daigaku, math, kitai,"escs"],\ index=["betsugaku"], aggfunc="mean" ESCS daigaku kitai math betsugaku danshiko joshiko kyogaku : Series DataFrame β 0 b 0, b 1,, b k ˆβ = b 1 + k b i c 1,i i=2 b 1 x 1 y b i a 1,i x i y = ˆα + ˆβx 1, y = a + b 1 x 1 + b 2 x b k x k x i = a i + c i x 1 x 1 ˆβ y aa1=pd.pivot_table(data=x,values=[ daigaku, math,"escs","male"],\ index=["toshi"], aggfunc="mean") ESCS daigaku male math toshi d=aa1.ix[1]-aa1.ix[0]# ix 38

7 y_data=x[ daigaku ] x_data=x[["toshi","male","escs","math"]] model=pd.ols(y=y_data, x=x_data, intercept=true)# intercept print(model) Summary of Estimated Coefficients toshi male ESCS math intercept End of Summary b=model.beta# indirct=b*d# index #ESCS #male #math ESCS daigaku math male Summary of Estimated Coefficients male < ESCS math toshi itercept End of Summary [ESCS daigaku NaN intercept NaN male NaN math toshi ( =

8 xv03=v03[(v03.type==" ")]# x_data=xv03[["male"]] y_data=xv03[ daigaku ] model03=pd.ols(y=y_data, x=x_data, intercept=true) print(model03) xv15=v15[(v15.type==" ")]# x_data=xv15[["male"]] y_data=xv15[ daigaku ] model15=pd.ols(y=y_data, x=x_data, intercept=true) print(model15) Summary of Estimated Coefficients male < intercept Summary of Estimated Coefficients male intercept #2003 y_data=v03[ daigaku ] v03["male_math"]=v03.male*v03.math v03["male_escs"]=v03.male*v03.escs x_data=v03["male","escs","math","male_math","male_escs"]] model=pd.ols(y=y_data, x=x_data, intercept=true)# intercept print(model) Summary of Estimated Coefficients male ESCS math male_math male_escs intercept male male * math male * ESCS

9 Summary of Estimated Coefficients male ESCS math male_math male_escs intercept Oaxaca Oaxaca X city,i = a city + b city X city,i + error X village,i = a village + b village X village,i + error X city X village = a city a village + b city Xcity b village Xvillage = a city a village + b city ( X city X village ) + (b city b village ) X village city village ols model object model.beta property dir list (Oaxaca) xxv03=xv03[(xv03.male==1)]# x_data=xxv03[["math","escs"]] y_data=xxv03[ daigaku ] model_m=pd.ols(y=y_data, x=x_data, intercept=true) print(model_m) x_m=x_data.mean() xxv03=xv03[(xv03.male==0)]# x_data=xxv03[["math","escs"]] y_data=xxv03[ daigaku ] model_f=pd.ols(y=y_data, x=x_data, intercept=true) print(model_f) Summary of Estimated Coefficients math ESCS intercept

10 Summary of Estimated Coefficients math ESCS intercept x_f=x_data.mean() dx=x_m-x_f print(dx) math ESCS dtype: float64 # ESCS dbeta=model_m.beta-model_f.beta print(dbeta) math ESCS intercept x_f["intercept"]=1# x_m["intercept"]=1 keisu=dbeta*x_f # hensu=model_m.beta*dx # print(keisu.sum()) print(hensu.sum()) # keisu=dbeta*x_m hensu=model_f.beta*dx print(keisu.sum()) print(hensu.sum() ESCS , :2003 MSECATEG (232) Mother White collar/blue collar classification Format: F1 Columns: White Collar high skilled 2 White Collar low skilled 3 Blue Collar high skilled 4 Blue Collar low skilled 42

11 9 Missing FSECATEG (233) Father White collar/blue collar classification Format: F1 Columns: White Collar high skilled 2 White Collar low skilled 3 Blue Collar high skilled 4 Blue Collar low skilled 9 Missing 2. IMMIG (243) Country of birth Format: F1 Columns: Native students 2 First-Generation students 3 Non-native students 9 Missing 43

最小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

第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

(lm) lm AIC 2 / 1

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

More information

untitled

untitled 7/67/1073,42911 15,020158,393 7/127/184,6674,913 2927 71.3 894 21.8 287 7.0 n=4108) 132 3.2 62 1.5 934 22.7 786 19.1 629 15.3 801 19.5 407 9.9 357 8.7 (n=4108) 35 35 30 25 20 15 10 153 3.7 1 0.02 23 0.6

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

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

In [168]: soup.find_all("label")

In [168]: soup.find_all(label) step 1 kakaku.com/bicycle/bicycle-battery/ web web Chrome cntl + Source Code and Copy cd 'kakaku_com_bicycle_bicycle-battery.html' In [166]: from bs4 import BeautifulSoup In [167]: html = open('kakaku_com_bicycle_bicycle-battery_2017.html')

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

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

一般化線形 (混合) モデル (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

CRPNo30表紙.ai

CRPNo30表紙.ai No.30 2012/6 20126 Clinical Research Professionals No.30 17 18 Clinical Research Professionals No.30 2012 6 20126 Clinical Research Professionals No.30 19 20 Clinical Research Professionals No.30 2012

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

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

1 JIS X 8341-3:2016 WCAG2.0 http://waic.jp/docs/wcag2/understanding.html WCAG2.0 http://waic.jp/docs/wcag2/techs.html 2 ... 1... 3... 6 1.1... 6 1.2... 7... 8 1.1.1... 8 1.2.1... 13 1.2.2... 14 1.2.3...

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

インターネットと運用技術シンポジウム 2016 Internet and Operation Technology Symposium 2016 IOTS /12/1 syslog 1,2,a) 3,b) syslog syslog syslog Interop Tokyo Show

インターネットと運用技術シンポジウム 2016 Internet and Operation Technology Symposium 2016 IOTS /12/1 syslog 1,2,a) 3,b) syslog syslog syslog Interop Tokyo Show syslog 1,2,a) 3,b) syslog syslog syslog Interop Tokyo ShowNet syslog Proposal of the anomaly detection method analyzing syslog data using Bollinger Bands algorithm on event network Hiroshi Abe 1,2,a) Mikifumi

More information

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

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

More information

インターネットサービス_vol5

インターネットサービス_vol5 8 50G 100G 200A 100A 500A 1000A 50G 100G 200A 100A 500A 1000A 9 Web de Shop Web s s s s shttp://www.alpha-web.jp/hosting/ 10 11 Web de Shop Web 12 13 Web de Shop Web 14 2,800 5,000 shttp://www.alpha-web.jp/hosting/

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

R R 16 ( 3 )

R R 16   ( 3 ) (017 ) 9 4 7 ( ) ( 3 ) ( 010 ) 1 (P3) 1 11 (P4) 1 1 (P4) 1 (P15) 1 (P16) (P0) 3 (P18) 3 4 (P3) 4 3 4 31 1 5 3 5 4 6 5 9 51 9 5 9 6 9 61 9 6 α β 9 63 û 11 64 R 1 65 13 66 14 7 14 71 15 7 R R 16 http://wwwecoosaka-uacjp/~tazak/class/017

More information

JSPS Grants-in-Aid for Creative Scientific Research Understanding Inflation Dynamics of the Japanese Economy Working Paper Series No.7 日本家計の消費 貯蓄 労働プロ

JSPS Grants-in-Aid for Creative Scientific Research Understanding Inflation Dynamics of the Japanese Economy Working Paper Series No.7 日本家計の消費 貯蓄 労働プロ Title 日本家計の消費 貯蓄 労働プロファイル Author(s) 阿部, 修人 ; 稲倉, 典子 Citation Issue 2007-02-14 Date Type Technical Report Text Version publisher URL http://hdl.handle.net/10086/13627 Right Hitotsubashi University Repository

More information

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

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

More information

untitled

untitled City (N=604) (N=604) (N=182) (N=299) (N=299) (N=604) (N=604) (N=166) (N=166) (N=737) (N=74) (N=713) (N=174) (N=430) (N=430) (N=430) (N=430) (N=430) (N=430) (N=131) (N=472) (N=472) (N=472)

More information

5.2 White

5.2 White 1 EViews 1 : 2007/5/15 2007/5/25 1 EViews 4 2 ( 6 2.1............................................ 6 2.2 Workfile............................................ 7 2.3 Workfile............................................

More information

P0003732_ㆉㆻ㆑39呷

P0003732_ㆉㆻ㆑39呷 5 May 2007 No.39 INDEX 2 4 6 9 14 21 22 3 2007.5 2 2007.5 5 2007.5 4 2007.5 7 2007.5 TOWN TOPICS 3/21 6 2007.5 3/22 2/25 3/30 3/93/14 9 2007.5 2007.5 8 11 2007.5 2007.5 10 13 2007.5 2007.5 12 15 2007.5

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

,829 [ 633 ] , EU 48 OECD OECD

,829 [ 633 ] , EU 48 OECD OECD 2009 7 24 540-0011 http://www.osaka.doyu.jp 1 2010 22 2,829 [ 633 ] 33 1 2009 4 1 40,942 1990 2 38 86 2000 EU 48 OECD 2004 6 OECD 21 2 21 2009 4 1 499 393 13.9 0 4 915 32.3 780 27.6 500 999 123 4.3 5 9

More information

Yogo

Yogo 2011 Vol.53 No.5 Yogo Jpn J School Health Jpn J School Health Yogo Graduate School of Education, Okayama University Division of Developmental Studies and Support, Graduate School of Education, Okayama

More information

2 8 34 2004 2622 3 23 3 4 15 48 26 22 6 5 305,836 286,576 shop shop 1,797,510 1,716,006 286,5762004 1,797,5102004 2003 2004 2003 2004 2 1 FACT BOOK 2005 86,891 87,480 74,120 74,372 86,891 74,120 2003 2004

More information

t sex N y y y Diff (1-2)

t sex N y y y Diff (1-2) Armitage 1 1.1 2 t 1.2 SAS Proc GLM 2 2.1 1 1 2.1.1 50 1 1 t sex N y 50 116.45 119.6 122.75 11.071 1.5657 93.906 154.32 y 50 127.27 130.7 134.13 12.072 1.7073 102.68 163.37 y Diff (1-2) -15.7-11.1-6.504

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

untitled

untitled ( œ ) œ 138,800 17 171,000 60,000 16,000 252,500 405,400 24,000 22 95,800 24 46,000 16,000 16,000 273,000 19,000 10,300 57,800 1,118,408,500 1,118,299,000 109,500 102,821,836 75,895,167 244,622 3,725,214

More information

平成22年度「ワーク・ライフ・バランス社会の実現と生産性の関係に関する研究」報告書

平成22年度「ワーク・ライフ・バランス社会の実現と生産性の関係に関する研究」報告書 III. 我が国と欧州各国の労働時間の差 ( 検討課題 2) 1 概要労働時間の国際比較研究は現在のところ十分とは言えない状況にある 我が国の生産性が欧州に比べて低い要因を検討するに当たっては そもそも日本の方が欧州に比べて労働時間が長いということを示す必要がある そこで 平成 21 年度の調査研究においては 欧州統一生活時間調査と日本の社会生活基本調査の公表データを用いた比較分析を行った 平成 22

More information

1793 Detailed Distributions of Seismic Intensity and Tsunami Heights of the Kansei off Miyagi Prefecture Earthquake of February 17, 1793 Yuichi NAMEGA

1793 Detailed Distributions of Seismic Intensity and Tsunami Heights of the Kansei off Miyagi Prefecture Earthquake of February 17, 1793 Yuichi NAMEGA 1793 Detailed Distributions of Seismic Intensity and Tsunami Heights of the Kansei off Miyagi Prefecture Earthquake of February 17, 1793 Yuichi NAMEGAYA, Yoshinobu TSUJI, Kazue UEDA Earthquake Research

More information

( š ) š 13,448 1,243,000 1,249,050 1,243,000 1,243,000 1,249,050 1,249, , , ,885

( š ) š 13,448 1,243,000 1,249,050 1,243,000 1,243,000 1,249,050 1,249, , , ,885 ( š ) 7,000,000 191 191 6,697,131 5,845,828 653,450 197,853 4,787,707 577,127 4,000,000 146,580 146,580 64,000 100,000 500,000 120,000 60,000 60,000 60,000 60,000 60,000 200,000 150,000 60,000 60,000 100,000

More information

untitled

untitled EPX-64S Rev 1.2 1.. 3 1.1.......... 3 1.2....... 3 1.3....... 4 1.4... 4 1.5... 4 2........ 5 2.1.... 5 EPX64S_GetNumberOfDevices........ 5 EPX64S_GetSerialNumber........ 6 EPX64S_Open....... 7 EPX64S_OpenBySerialNumber

More information

1 2 3 4 5 6 X Y ABC A ABC B 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 13 18 30 P331 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 ( ) 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

More information

26 2 3 4 5 8 9 6 7 2 3 4 5 2 6 7 3 8 9 3 0 4 2 4 3 4 4 5 6 5 7 6 2 2 A B C ABC 8 9 6 3 3 4 4 20 2 6 2 2 3 3 4 4 5 5 22 6 6 7 7 23 6 2 2 3 3 4 4 24 2 2 3 3 4 4 25 6 2 2 3 3 4 4 26 2 2 3 3 27 6 4 4 5 5

More information

mogiJugyo_slide_full.dvi

mogiJugyo_slide_full.dvi a 2 + b 2 = c 2 (a, b, c) a 2 a 2 = a a a 1/ 78 2/ 78 3/ 78 4/ 78 180 5/ 78 http://www.kaijo.ed.jp/ 6/ 78 a, b, c ABC C a b B c A C 90 a 2 + b 2 = c 2 7/ 78 C a b a 2 +b 2 = c 2 B c A a 2 a a 2 = a a 8/

More information

2 ID POS 1... 1 2... 2 2.1 ID POS... 2 2.2... 3 3... 5 3.1... 5 3.2... 6 3.2.1... 6 3.2.2... 7 3.3... 7 3.3.1... 7 3.3.2... 8 3.3.3... 8 3.4... 9 4... 11 4.1... 11 4.2... 15 4.3... 27 5... 35... 36...

More information

²¾ÁÛ¾õ¶·É¾²ÁË¡¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸DCchoice ¡Ê»ÃÄêÈÇ¡Ë

²¾ÁÛ¾õ¶·É¾²ÁË¡¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸DCchoice ¡Ê»ÃÄêÈÇ¡Ë DCchoice ( ) R 2013 2013 11 30 DCchoice package R 2013/11/30 1 / 19 1 (CV) CV 2 DCchoice WTP 3 DCchoice package R 2013/11/30 2 / 19 (Contingent Valuation; CV) WTP CV WTP WTP 1 1989 2 DCchoice package R

More information

001 No.3/12 1 1 2 3 4 5 6 4 8 13 27 33 39 001 No.3/12 4 001 No.3/12 5 001 No.3/12 6 001 No.3/12 7 001 8 No.3/12 001 No.3/12 9 001 10 No.3/12 001 No.3/12 11 Index 1 2 3 14 18 21 001 No.3/12 14 001 No.3/12

More information

Microsoft Word - StatsDirectMA Web ver. 2.0.doc

Microsoft Word - StatsDirectMA Web ver. 2.0.doc Web version. 2.0 15 May 2006 StatsDirect ver. 2.0 15 May 2006 2 2 2 Meta-Analysis for Beginners by using the StatsDirect ver. 2.0 15 May 2006 Yukari KAMIJIMA 1), Ataru IGARASHI 2), Kiichiro TSUTANI 2)

More information

untitled

untitled ( œ ) œ 2,000,000 20. 4. 1 25. 3.27 44,886,350 39,933,174 4,953,176 9,393,543 4,953,012 153,012 4,800,000 164 164 4,001,324 2,899,583 254,074 847,667 5,392,219 584,884 7,335 4,800,000 153,012 4,800,000

More information

無印良品のスキンケア

無印良品のスキンケア 2 3 4 5 P.22 P.10 P.18 P.14 P.24 Na 6 7 P.10 P.22 P.14 P.18 P.24 8 9 1701172 1,400 1701189 1,000 1081267 1,600 1701257 2,600 1125923 450 1081250 1,800 1125916 650 1081144 1,800 1081229 1,500 Na 1701240

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

表紙PDF作成用/PDF表紙作成用

表紙PDF作成用/PDF表紙作成用 2008 Vol.50 No.1 Jpn J School Health Jpn J School Health Jpn J School Health Jpn J School Health Hosen Junior High School, Okayama City Notre Dame Seishin University Graduate School Jpn J School Health

More information

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID 10 10 10.1 1. 2. 3. HTML(HyperText Markup Language) Web [ ][ ] HTML Web HTML HTML Web HTML ~b08a001/www/ ( ) ~b08a001/www-local/ ( ) html ( ) 10.2 WWW WWW-local b08a001 ~b08a001/www/ ~b08a001/www-local/

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

本文 53集/9 駒田 白

本文 53集/9 駒田 白 Green-Soybean Preference of Gife City Elementary School Students and Practical Use of Its Akiko KOMADA Key words Green-Soybean. Elementary School Students. Practical Use. B B B B g g gg g gg g g g B B

More information

ダーク・ムーン

ダーク・ムーン Hase Seisyu Official Web Site Sleepless City http://www.hase-seisyu.com/ http://www.hase-seisyu.com2 http://www.hase-seisyu.com3 http://www.hase-seisyu.com4 http://www.hase-seisyu.com5 http://www.hase-seisyu.com6

More information

untitled

untitled 23 59 13 23 24 0101 0001 0101 0002 0101 0001 0101 0002 0101 0007 0101 0009 0101 0012 0101 0026 0101 0031 0101 0033 0101 0056 0101 0059 0101 0075 0101 0076 0101 5001 0101 0002 0101 0003 0101 0008 0101 0010

More information

29 33 58 2005 1970 1997 2002, pp.3-8 2001 2002 2005b 2000 pp.137-146 2005c 7 34 Ma and Cartier eds. 2003 1970 1980 1979 2002 2000 1) 1980 1990 1991 1993 1995 1998 1994 1993 20031972 2003 2005 1997 2005a

More information

Title 個人 集団レベルの心理社会的学校環境が生体的ストレス反応に及ぼす影響 Author(s) 高倉, 実 ; 小林, 稔 ; 和氣, 則江 ; 安仁屋, 洋子 Citation Issue Date 2007-03 URL http://hdl.handle.net/20.500.12000/ Rights Abstracts of Research Project, Grant-in-Aid

More information

Introduction Purpose This course explains how to use Mapview, a utility program for the Highperformance Embedded Workshop (HEW) development environmen

Introduction Purpose This course explains how to use Mapview, a utility program for the Highperformance Embedded Workshop (HEW) development environmen Introduction Purpose This course explains how to use Mapview, a utility program for the Highperformance Embedded Workshop (HEW) development environment for microcontrollers (MCUs) from Renesas Technology

More information

22 Google Trends Estimation of Stock Dealing Timing using Google Trends

22 Google Trends Estimation of Stock Dealing Timing using Google Trends 22 Google Trends Estimation of Stock Dealing Timing using Google Trends 1135064 3 1 Google Trends Google Trends Google Google Google Trends Google Trends 2006 Google Google Trend i Abstract Estimation

More information

1 kawaguchi p.1/81

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

More information

untitled

untitled Ÿ Ÿ ( œ ) 120,000 60,000 120,000 120,000 80,000 72,000 100,000 180,000 60,000 100,000 60,000 120,000 100,000 240,000 120,000 240,000 1,150,000 100,000 120,000 72,000 300,000 72,000 100,000 100,000 60,000

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

49148

49148 Research in Higher Education - Daigaku Ronshu No.24 (March 1995) 77 A Study of the Process of Establishing the Student Stipend System in the Early Years of the PRC Yutaka Otsuka* This paper aims at explicating

More information

untitled

untitled Flex 2010 1 21 5106139 5106144 1 -------------------------------------------------------------------------------------------------p3 ----------------------------------------------------------------------------------------------p4

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

Vol.55 No (Jan. 2014) saccess 6 saccess 7 saccess 2. [3] p.33 * B (A) (B) (C) (D) (E) (F) *1 [3], [4] Web PDF a m

Vol.55 No (Jan. 2014) saccess 6 saccess 7 saccess 2. [3] p.33 * B (A) (B) (C) (D) (E) (F) *1 [3], [4] Web PDF   a m Vol.55 No.1 2 15 (Jan. 2014) 1,a) 2,3,b) 4,3,c) 3,d) 2013 3 18, 2013 10 9 saccess 1 1 saccess saccess Design and Implementation of an Online Tool for Database Education Hiroyuki Nagataki 1,a) Yoshiaki

More information

研究紀要 第5号

研究紀要 第5号 3 4 5 6 7 8 a s d f a 9 10 s d a 11 12 s d f g 13 h j a d s 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 a 35 s 36 a 37 s 38 a 39 s 40 a 41 s d 42 f 43 44 46 47 48 49 50 a s d as d 51

More information

š ( š ) ,400, , ,893, ,743, ,893, ,893, ,658,475 35,884,803 2,167,037 7,189,060 55,417,575 81,08

š ( š ) ,400, , ,893, ,743, ,893, ,893, ,658,475 35,884,803 2,167,037 7,189,060 55,417,575 81,08 Ÿ š ( š ) 1,970,400 5,000,000 12. 3.26 180,553,493 9. 9.29 41,772,995 10. 9.28 50,075,163 13. 2. 2 1,000,000 10.12.27 j 19,373,160 13. 4. 1 j 1,200,000 38. 3.19 j 1,100,000 6. 9.22 14. 1. 8 0 0 14. 3.13

More information

論 文 Earnings Management in Pension Accounting and Revised Jones Model Kazuo Yoshida, Nagoya City University 要約本稿では退職給付会計における全ての会計選択を取り上げて 経営者の報告利益管理行動

論 文 Earnings Management in Pension Accounting and Revised Jones Model Kazuo Yoshida, Nagoya City University 要約本稿では退職給付会計における全ての会計選択を取り上げて 経営者の報告利益管理行動 論 文 Earnings Management in Pension Accounting and Revised Jones Model Kazuo Yoshida, Nagoya City University 要約本稿では退職給付会計における全ての会計選択を取り上げて 経営者の報告利益管理行動について包括的な分析を行った 分析の結果 会計基準変更時差異による裁量額が最も大きく 報告利益管理の主要な手段であったことが明らかとなった

More information

教育費負担に影響を及ぼす諸要因―JGSS-2002データによる分析―

教育費負担に影響を及ぼす諸要因―JGSS-2002データによる分析― 日 本 版 General Social Surveys 研 究 論 文 集 [5] JGSS で 見 た 日 本 人 の 意 識 と 行 動 JGSS Research Series No.2 The Factors Affecting Expenditure on Education Results of Japanese General Social Surveys (JGSS-2002) Mondo

More information