2 観察研究データに対するマッチング 1 : 1 マッチング 対照群 治療群

Size: px
Start display at page:

Download "2 観察研究データに対するマッチング 1 : 1 マッチング 対照群 治療群"

Transcription

1 * SAS による傾向スコアマッチング 魚住龍史 1 * 矢田真城 2 山本倫生 3 川口淳 4 1 京都大学大学院医学研究科医学統計生物情報学 2 エイツーヘルスケア株式会社 3 岡山大学 4 佐賀大学 Propensity score matching using SAS Ryuji Uozumi 1 *, Shinjo Yada 2, Michio Yamamoto 3, and Atsushi Kawaguchi 4 1 Kyoto University 2 A2 Healthcare Corporation 3 Okayama University 4 Saga University

2 2 観察研究データに対するマッチング 1 : 1 マッチング 対照群 治療群

3 3 観察研究におけるマッチング 新たな解析対象集団 (matched sample) を構成 対照群 治療群

4 4 SAS ユーザーによる傾向スコアマッチング 傾向スコア SAS PROC LOGISTIC マッチング??

5 5 本発表のトピック 傾向スコアによる最近傍マッチング JMP / R によるマッチング PSMATCH プロシジャによるマッチング

6 傾向スコア ( バランススコア ) 傾向スコアモデル e i Z i : 被験者 i の群を表す変数 ( Z 1 : 治療群, 0 : 対照群 ) : 被験者 i の共変量ベクトル X i Pr( Z i i 1 X i ) Z i Rosenbaum and Rubin (1983) Biometrika 例 :X i を性別 (Gender), 年齢 (Age),BMI (Bmi) とする場合 proc logistic data=< 入力データセット名 >; class Gender; model z(event='1')= Gender Age Bmi; output out=< 出力データセット名 > pred=ps; run; 6

7 7 傾向スコアによる最近傍マッチング 対照群 logit( ei ) logit( e j ei e j 治療群 e i ) e j

8 キャリパー (caliper) logit( ei ) logit( e j ) Caliper SD[logit ( e )] Caliper Rosenbaum and Rubin (1985) Am Stat Austin (2011) Pharm Stat 対照群 試験群 e j e i ei e j 8

9 最近傍マッチングを用いた 臨床研究の論文における記載例 Matching was performed with the use of a 1:1 matching protocol without replacement (greedy-matching algorithm), with a caliper width equal to 0.2 of the standard deviation of the logit of the propensity score. Bangalore et al. (2015) N Engl J Med; 田栗 (2017) Coronary Intervention マッチング後, 調整した変数の群間の分布を確認 バイアスが生じたままである場合はキャリパーの値を再考 山本 森田 (2015) 呼吸 9

10 10 JMP (11.0 以上 ) による最近傍マッチング アドイン入手 URL :

11 1 : 1 マッチング実行画面 11

12 JMP におけるキャリパーの指定 logit( e i ) logit( e j ) Caliper Var[logit( e ) Z 1] Var[logit( e ) 2 Z 0] logit( ei ) logit( e j ) Caliper SD[logit ( e )] Caliper Rosenbaum and Rubin (1985) Am Stat Austin (2011) Pharm Stat 12

13 JMP は 1 : 1 マッチングのみ対応 13

14 最近傍マッチングの事例 14 JMP を用いた最近傍マッチングの事例 Yamashita et al. (2017). Current status and outcomes of direct oral anticoagulant use in patients with atrial fibrillation in the real-world: The Fushimi AF Registry. Circ J. R を用いた最近傍マッチングの事例 Hamatani et al. (2015). Low body weight is associated with the incidence of stroke in atrial fibrillation patients: Insight from the Fushimi AF Registry. Circ J. Hida et al. (2017). Open versus laparoscopic surgery for advanced low rectal cancer: a large multicenter propensity score matched cohort study in Japan. Ann Surg.

15 R による最近傍マッチング ### パッケージを使用 ### library(matching) ### 傾向スコアの推定結果が含まれた CSV ファイルをデータセットとして読み込み ### data = read.csv("psout00.csv") ### 傾向スコアモデルの分子 ( 治療群のカテゴリ ) を指定 ### Trt = data$drug == "Drug_X" ### キャリパーの値を指定 ### caliper = 0.20 ### 傾向スコアのロジット変換 ### data <- transform(data, ps.logit=log(ps / (1 - ps))) ### 乱数のシード ### set.seed(123456) ### 1:1 最近傍マッチングを非復元抽出で実行 ### Matching = Match(Y=NULL, Tr=Trt, X=data$ps.logit, M=1, replace=false, caliper = caliper); summary(matching) 15

16 SAS による傾向スコアマッチング SAS でマッチングをやりたい DATA ステップで傾向スコアマッチングを行うための SAS マクロの報告 (Coca-Perraillon, 2007; Lanehart et al., 2012) SAS マクロで処理するなら R と同じだし, SAS/STAT のプロシジャでマッチングができないものだろうか 16

17 SAS SAS/STAT 2011/ /08 SAS / / / PSMATCH プロシジャ 2015/ /11 17

18 PSMATCH プロシジャの主なステートメントの役割 共変量の指定 傾向スコアの算出 マッチング条件 方法の指定 マッチング後のデータセット出力 共変量のバランスを確認 PSMODEL MATCH OUTPUT ASSESS proc psmatch data=< 入力データセット名 >; class Z < 共変量におけるカテゴリカル変数 >; psmodel Z(treated= 1 )=< 共変量 >; match < マッチング条件 方法の指定 >; assess < 共変量などのバランスの評価 >; output out(obs=match)=< 出力データセット名 >; run; 18

19 19 観察研究のデータセット : Drugs (n = 486) 本発表で用いる変数 治療 (Drug = Drug_X 治療群, Drug_A 対照群 ) 年齢 (Age) 性別 (Gender = Male, Female ) BMI (Bmi)

20 PSMODEL: 傾向スコアモデル proc psmatch data=drugs region=allobs; class Drug Gender; psmodel Drug(treated='1') = Gender Age Bmi; output out(obs=all)=psout00 ps=ps attwgt=attw atewgt=atew; run; データセット PSOUT00 ( 最初の 3 オブザベーション ) Gender Age Bmi Drug Patient ID PS ATEW ATTW Male Drug_X Male Drug_A Male Drug_A

21 MATCH: 傾向スコアマッチング実行 1 : 1 最近傍マッチング proc psmatch data=drugs region=allobs; class Drug Gender; psmodel Drug(treated='Drug_X') = < 共変量 >; match method=greedy(k=1 order=descending) stat=lps caliper(mult=stddev)=0.20; output out(obs=match)=psmatch00 ps=ps lps=lps matchwgt=match matchid=matchsort; run; logit( ei ) logit( e j ) Caliper SD[logit( e )] 21

22 MATCH ステートメントで指定可能なマッチング方法 Replacement No Optimal Yes Yes No Replacement Matching METHOD = REPLACE Greedy Nearest Neighbor Matching METHOD = GREEDY Fixed Ratio No Yes Fixed Ratio Matching METHOD = OPTIMAL Variable Ratio No Yes Variable Ratio Matching METHOD = VARRATIO Full Matching METHOD = FULL 22

23 OUTPUT: マッチング後のデータセット proc psmatch data=drugs region=allobs; class Drug Gender; psmodel Drug(treated='Drug_X') = < 共変量 > match < マッチング条件 方法の指定 >; output out(obs=match)=psmatch00 ps=ps lps=lps matchwgt=match matchid=matchsort; run; proc sort data=psmatch00 out=pssort00; by descending ps; run; データセット PSSORT00 ( 最初の 5 オブザベーション ) Gender Age Bmi Drug PatientID PS match matchsort Male Drug_X Male Drug_A Female Drug_A Male Drug_X Male Drug_X

24 ASSESS: 変数の群間差の評価 1 : 1 最近傍マッチング ods graphics on; proc psmatch data=drugs region=allobs; class Drug Gender; psmodel Drug(treated= Drug_X') = < 共変量 >; match method=greedy(k=1 order=descending) stat=lps caliper(mult=stddev)=0.20; assess lps var=(gender Age Bmi) / weight=none varinfo plots=(all); run; 24

25 マッチング前後の変数情報 Variable Information Variable Obs Treated (Drug = Drug_X) Control (Drug = Drug_A) N Mean Std Dev N Mean Std Dev LPS All Region Matched Age All Region Matched Bmi All Region Matched Gender All Region Matched 治療群 対照群 マッチング前 113 名 373 名 マッチング後 113 名 113 名 25

26 各変数に対する標準化した群間差 Standardized Variable Differences (Treated - Control) Variable Standardized Mean Difference Mean Difference Divisor Mean Difference All Obs Region Obs Matched Obs All Obs Region Obs Matched Obs LPS Age Bmi Gender 年齢 : Standardiz ed Mean Difference Mean Difference Divisor =

27 マッチング前後の変数情報 Variable Information Variable Obs Treated (Drug = Drug_X) Control (Drug = Drug_A) N Mean Std Dev N Mean Std Dev LPS All Region Matched Age All Region Matched Bmi All Region Matched Gender All Region Matched 年齢のマッチング前のプールした標準偏差 ( ) =

28 各変数に対する標準化した群間差 Standardized Variable Differences (Treated - Control) Variable Standardized Mean Difference Mean Difference Divisor Mean Difference All Obs Region Obs Matched Obs All Obs Region Obs Matched Obs LPS Age Bmi Gender 年齢 : Standardiz ed Mean Difference Mean Difference Divisor =

29 各変数に対する標準化した群間差 ODS GRAPHICS 29

30 年齢に対する群別のクラウドプロット 30

31 年齢に対する群別の箱ひげ図 31

32 性別に対する群別の度数分布 32

33 SAS ユーザー総会における 傾向スコアを用いた論文報告 2010 古川 杉本 Propensity Score 法によるバイアスの調整法に関する実務的な問題点 古川 本発表 観察研究において選択 bias を制御するために用いられる Propensity Score IPTW と層化調整法の 頑健性の観点からの使い分けについて PSMATCH プロシジャ登場!! 最近傍マッチングについて SAS プログラムの詳細は論文集を参照 33

34 SAS SAS/STAT 2011/ /08 SAS / / / PSMATCH プロシジャ 2015/ /11 CAUSALTRT プロシジャ 34

35 References 1. Austin PC, Grootendorst P, Anderson GM. A comparison of the ability of different propensity score models to balance measured variables between treated and untreated subjects: a Monte Carlo study. Statistics in Medicine. 26: , Austin PC. Optimal caliper widths for propensity-score matching when estimating differences in means and differences in proportions in observational studies. Pharmaceutical Statistics. 10: , Bangalore S, Guo Y, Samadashvili Z, Blecker S, Xu J, Hannan EL. Everolimus-eluting stents or bypass surgery for multivessel coronary disease. New England Journal of Medicine. 372: , Coca-Perraillon M. Local and global optimal propensity score matching. Proceedings of the SAS Global Forum. SAS Institute Inc., Cary, NC, Faries D, Leon AC, Haro JM, Obenchain RL. Analysis of Observational Health Care Data Using SAS(R). SAS Institute Inc., Cary, NC, Hida K, Okamura R, Sakai Y, Konishi T, Akagi T, Yamaguchi T, Akiyoshi T, Fukuda M, Yamamoto S, Yamamoto M, Nishigori T, Kawada K, Hasegawa S, Morita S, Watanabe M. Open versus laparoscopic surgery for advanced low rectal cancer: a large multicenter propensity score matched cohort study in Japan. Annals of Surgery, Hamatani Y, Ogawa H, Uozumi R, Iguchi M, Yamashita Y, Esato M, Chun YH, Tsuji H, Wada H, Hasegawa K, Abe M, Morita S, Akao M. Low body weight is associated with the incidence of stroke in atrial fibrillation patients: Insight from the Fushimi AF Registry. Circulation Journal. 79: , JMP ジャパン事業部. JMP による傾向スコアを用いたマッチング 層別分析 回帰分析. SAS Institute Japan 株式会社,

36 References (Cont d) 9. Lanehart RE, de Gil PR, Kim ES, Bellara AP, Kromrey JD, Lee RS. Propensity score analysis and assessment of propensity score approaches using SAS(R) procedures. Proceedings of the SAS Global Forum. SAS Institute Inc., Cary, NC, Normand ST, Landrum MB, Guadagnoli E, Ayanian JZ, Ryan TJ, Cleary PD, McNeil BJ. Validating recommendations for coronary angiography following acute myocardial infarction in the elderly: a matched analysis using propensity scores. Journal of Clinical Epidemiology. 54: , Rosenbaum PR, Rubin DB. The central role of the propensity score in observational studies for causal effects. Biometrika. 70:41 55, Rosenbaum PR, Rubin DB. Constructing a control group using multivariate matched sampling methods that incorporate the propensity score. The American Statistician. 39:33 38, SAS Institute Inc. SAS/STAT(R) 14.2 User s Guide. SAS Institute Inc., Cary, NC, Yamashita Y, Uozumi R, Hamatani Y, Esato M, Chun YH, Tsuji H, Wada H, Hasegawa K, Ogawa H, Abe M, Morita S, Akao M. Current status and outcomes of direct oral anticoagulant use in patients with atrial fibrillation in the real-world: The Fushimi AF Registry. Circulation Journal, 2017 DOI: /circj.CJ 田栗正隆. 有名論文から統計の基礎を学ぶ : プロペンシティスコア. Coronary Intervention, 13:63 69, 古川敏仁 杉本典子. Propensity Score 法によるバイアスの調整法に関する実務的な問題点. SAS ユーザー総会論文集 , 古川敏仁. 観察研究において選択 bias を制御するために用いられる Propensity Score IPTW と層化調整法の 頑健性の観点からの使い分けについて. SAS ユーザー総会論文集 , 山本倫生 森田智視. 傾向スコアによる調整解析. 呼吸. 34: ,

PSMATCH Procedure ニューラルネットワークの奇跡のマッチング ~Real World Data の利用可能性を忖度する ~ 馬場崇充 藤原正和 北西由武 ( 塩野義製薬株式会社解析センター ) PSMATCH Procedure Neural Network = Miracle En

PSMATCH Procedure ニューラルネットワークの奇跡のマッチング ~Real World Data の利用可能性を忖度する ~ 馬場崇充 藤原正和 北西由武 ( 塩野義製薬株式会社解析センター ) PSMATCH Procedure Neural Network = Miracle En PSMATCH Procedure ニューラルネットワークの奇跡のマッチング ~Real World Data の利用可能性を忖度する ~ 馬場崇充 藤原正和 北西由武 ( 塩野義製薬株式会社解析センター ) PSMATCH Procedure Neural Network = Miracle Encounter ~Conjecturing the usability of Real World Data~

More information

PHREG プロシジャにおける 共変量調整解析に関連したオプション機能 魚住龍史 1 * 矢田真城 2 浜田知久馬 3 1 京都大学大学院医学研究科医学統計生物情報学 2 エイツーヘルスケア株式会社 3 東京理科大学 Investigating fascinating aspects associa

PHREG プロシジャにおける 共変量調整解析に関連したオプション機能 魚住龍史 1 * 矢田真城 2 浜田知久馬 3 1 京都大学大学院医学研究科医学統計生物情報学 2 エイツーヘルスケア株式会社 3 東京理科大学 Investigating fascinating aspects associa PHREG プロシジャにおける 共変量調整解析に関連したオプション機能 魚住龍史 1 * 矢田真城 2 浜田知久馬 3 1 京都大学大学院医学研究科医学統計生物情報学 2 エイツーヘルスケア株式会社 3 東京理科大学 Investigating fascinating aspects associated with covariate-adjusted analysis using PHREG procedure

More information

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

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

More information

スライド 1

スライド 1 線形モデルにおける CLASS ステートメントの機能 吉田早織 1 魚住龍史 2 1 日本化薬株式会社医薬データセンター 2 京都大学大学院医学研究科 The fascinating features for the CLASS in the context of linear models Saori Yoshida 1 and Ryuji Uozumi 2 1 Clinical Data Management

More information

Microsoft PowerPoint - SAS2012_ZHANG_0629.ppt [互換モード]

Microsoft PowerPoint - SAS2012_ZHANG_0629.ppt [互換モード] SAS による生存時間解析の実務 張方紅グラクソ スミスクライン ( 株 バイオメディカルデータサイエンス部 Practice of Survival Analysis sing SAS Fanghong Zhang Biomedical Data Science Department, GlaxoSmithKline K.K. 要旨 : SASによる生存時間解析の実務経験を共有する. データの要約

More information

<4D F736F F F696E74202D204D C982E682E892B290AE82B582BD838A E8DB782CC904D978A8BE68AD482C98AD682B782E988EA8D6C8E402E >

<4D F736F F F696E74202D204D C982E682E892B290AE82B582BD838A E8DB782CC904D978A8BE68AD482C98AD682B782E988EA8D6C8E402E > SAS ユーザー総会 2017 Mantel-Haenszel 法により調整したリスク差の信頼区間に関する一考察 武田薬品工業株式会社日本開発センター生物統計室佐々木英麿 舟尾暢男 要旨 Mantel-Haenszel 法により調整したリスク差に関する以下の信頼区間の算出方法を紹介し 各信頼区間の被覆確率をシミュレーションにより確認することで性能評価を行う Greenland 信頼区間 Sato 信頼区間

More information

dvi

dvi 2017 65 2 217 234 2017 Covariate Balancing Propensity Score 1 2 2017 1 15 4 30 8 28 Covariate Balancing Propensity Score CBPS, Imai and Ratkovic, 2014 1 0 1 2 Covariate Balancing Propensity Score CBPS

More information

Microsoft PowerPoint - ps_Okumura.pptx

Microsoft PowerPoint - ps_Okumura.pptx 傾向スコア分析 の書き方 奥村泰之 国立精神 神経医療研究センター神経医療研究センタ 精神保健研究所社会精神保健研究部 公益社団法人日本心理学会 心理 医学系研究者のためのデータ解析環境 R による統計学の研究会 第 8 回研究集会 2012/12/8 16:00~18:50 東京医科歯科大学 構成 傾向スコア分析の特徴 (8 min) 項目詳細 第 1 部 : 共変量の選択根拠と PS 推定 (8

More information

Microsoft PowerPoint - 【魚住】 発表原稿【Web公開用】.ppt [互換モード]

Microsoft PowerPoint - 【魚住】 発表原稿【Web公開用】.ppt [互換モード] SG (Statistical Graphics) Procedures による Kaplan-Meier プロットの作成 魚住龍史 1, * 浜田知久馬 2 1 日本化薬株式会社医薬データセンター 2 東京理科大学工学部経営工学科 Kaplan-Meier plots using Statistical Graphics Procedures Ryuji Uozumi 1, * and Chikuma

More information

...Q.....\1_4.ai

...Q.....\1_4.ai * *** ** **** * ** *** **** 1910 204203 [] [] [] [] 2004 36 4071822204203 13 t 2 P0.05 [] BMI 68 90% 26.6% 68% 66.2% 37 847% 34% 20.6% 11.3% 34.3% 28.1% 30% 38 31.4%41.9% 145%3 38.7%21.2% B 4 C 35.2% 16.0%

More information

Microsoft Word - 「黄砂とその健康影響について」小冊子180323版

Microsoft Word - 「黄砂とその健康影響について」小冊子180323版 ...1...1...1...2...4...4...4...6...7...7...7...7...8...8...9...9...10... 11... 11... 11... 11...12...12...13...16...18...20 1 1-1 1-2 1 1 km 24.5 m/s 10 50 m 1 1-3 μm 1-4 1-5 2 8 http://www.jma-net.go.jp/sat/himawari/obsimg/image_dust.html

More information

C/NC : committed/noncommitted

C/NC : committed/noncommitted C/NC : committed/noncommitted 110 time post-icd implant 1) The Cardiac Arrhythmia Suppression Trial (CAST) Investigators Preliminary report : Effect of encainaide and flecainide on mortality in a

More information

Statistical inference for one-sample proportion

Statistical inference for one-sample proportion RAND 関数による擬似乱数の生成 魚住龍史 * 浜田知久馬東京理科大学大学院工学研究科経営工学専攻 Generating pseudo-random numbers using RAND function Ryuji Uozumi * and Chikuma Hamada Department of Management Science, Graduate School of Engineering,

More information

36:378 第 38 回日本脳卒中学会講演シンポジウム 原著 36: , 要旨 TIA 2 t-pa Key words: stroke registry, stroke subtype, onset-visi

36:378 第 38 回日本脳卒中学会講演シンポジウム 原著 36: , 要旨 TIA 2 t-pa Key words: stroke registry, stroke subtype, onset-visi 36:378 第 38 回日本脳卒中学会講演シンポジウム 原著 36: 378 384, 2014 1 2 要旨 1999 2012 10 31 29 26 80 30 TIA 2 t-pa Key words: stroke registry, stroke subtype, onset-visit time, chronological change はじめに 4 12 23 27 1 Japan

More information

食道がん化学放射線療法後のsalvage手術

食道がん化学放射線療法後のsalvage手術 2006 2 17 52 Daly JM, et al. J Am Coll Surg 2000;190:562-573 Esophageal Cancer: Results of an American College of Surgeons Patient Care Evaluation Study Daly JM, et al. J Am Coll Surg 2000;190:562-573

More information

268 LSG 図 Lee ABCD 表 1 4 Age BMI C Duration Still DiaRem 表 1 4 HbA1c Ⅱ 対象と方法 1 17 LSG 6 3 Excess Weight Loss EWL BMI 25 kg/m 2 Hb

268 LSG 図 Lee ABCD 表 1 4 Age BMI C Duration Still DiaRem 表 1 4 HbA1c Ⅱ 対象と方法 1 17 LSG 6 3 Excess Weight Loss EWL BMI 25 kg/m 2 Hb 52 5 18 1 267 原著 ( 臨床研究 ) LSG ABCD DiaRem LSG 3 93.1 1 7.8 CR37.5 PR33.3 1 ABCD 5 DiaRem 12 LSG ABCD DiaRem LSG 腹腔鏡下スリーブ状胃切除術,ABCD スコア,DiaRem スコア Ⅰ はじめに Bariatric Surgery 2 1 metabolic surgery 2 ABCD 2

More information

06_学術_関節単純X線画像における_1c_梅木様.indd

06_学術_関節単純X線画像における_1c_梅木様.indd Arts and Sciences X The formulation of femoral heard measurement corrected enlargement ratio using hip joints X-ray Imaging 1 2 1 1 1 2 Key words: Bipolar Hip Arthroplasty (BHA) Preoperative planning Enlargement

More information

2 The Bulletin of Meiji University of Integrative Medicine 3, Yamashita 10 11

2 The Bulletin of Meiji University of Integrative Medicine 3, Yamashita 10 11 1-122013 1 2 1 2 20 2,000 2009 12 1 2 1,362 68.1 2009 1 1 9.5 1 2.2 3.6 0.82.9 1.0 0.2 2 4 3 1 2 4 3 Key words acupuncture and moxibustion Treatment with acupuncture, moxibustion and Anma-Massage-Shiatsu

More information

21-07_後藤論文.smd

21-07_後藤論文.smd 2015; 21: 5866 Yoichi Goto: Current status and future perspective of cardiac rehabilitation in Japan. J Jpn Coron Assoc 2015; 21: 5866 I 1 1 3 1 2 3 QOL 2 Fig. 1 1 196070 AMI AMI 1980 AMI CABG comprehensive

More information

1) University Group Diabetes Program: A study of hypoglycemic agents on vascular complica- in patients with adult-onset tions diabetes. I. Design, methods and baseline results. Diabetes 19 (suppl. 2):

More information

2011/02/09 CJC Propensity score

2011/02/09 CJC Propensity score 2011/02/09 CJC Propensity score 担当 : 小尾佳嗣 What is propensity score? 多くの因子のデータをもとに 多重回帰解析を用いて算出した ある介入が行われる確率 Why propensity score? 最も確実に介入効果を検証するには RCT に代表される実験的な研究が適当である ただし RCT が現実的ではない状況がある 倫理的問題 費用的問題

More information

日本製薬工業協会シンポジウム 生存時間解析の評価指標に関する最近の展開ー RMST (restricted mean survival time) を理解するー 2. RMST の定義と統計的推測 2018 年 6 月 13 日医薬品評価委員会データサイエンス部会タスクフォース 4 生存時間解析チー

日本製薬工業協会シンポジウム 生存時間解析の評価指標に関する最近の展開ー RMST (restricted mean survival time) を理解するー 2. RMST の定義と統計的推測 2018 年 6 月 13 日医薬品評価委員会データサイエンス部会タスクフォース 4 生存時間解析チー 日本製薬工業協会シンポジウム 生存時間解析の評価指標に関する最近の展開ー RMST (restricted mean survival time) を理解するー 2. RMST の定義と統計的推測 2018 年 6 月 13 日医薬品評価委員会データサイエンス部会タスクフォース 4 生存時間解析チーム 日本新薬 ( 株 ) 田中慎一 留意点 本発表は, 先日公開された 生存時間型応答の評価指標 -RMST(restricted

More information

スライド 1

スライド 1 SAS による二項比率の差の非劣性検定の正確な方法について 武藤彬正宮島育哉榊原伊織株式会社タクミインフォメーションテクノロジー Eact method of non-inferiority test for two binomial proportions using SAS Akimasa Muto Ikuya Miyajima Iori Sakakibara Takumi Information

More information

WHO Library Cataloguing in Publication Data 2003, Wilkinson,Richard Marmot,Michael Social determinants of health SDH The social gradient Stress Early life Social exclusion Work Unemployment Social support

More information

12 1) 20012002 Allison1995 2 3 35 25 20 6 12 1,156 80 2003 2005 2 4-1 1 12 Person-year Data 3 t

12 1) 20012002 Allison1995 2 3 35 25 20 6 12 1,156 80 2003 2005 2 4-1 1 12 Person-year Data 3 t 12 10 Kaplan-Meier Method Discrete-time Logit Model Survival Analysis 2 p t = p t / (1-p t ) Odds Odds Ratio 12 1) 20012002 Allison1995 2 3 35 25 20 6 12 1,156 80 2003 2005 2 4-1 1 12 Person-year Data

More information

I Jpn Prosthodont Soc 47: 779-786, 2003 A Study of Masticatory Ability in the Elderly A Comparison between Dentulous Subjects and Denture - Wearers- Nakashima Mihoko, Okimoto Kimie, Matsuo Koichi and Terada

More information

九州大学学術情報リポジトリ Kyushu University Institutional Repository 高齢心疾患患者における運動機能と身体的フレイル評価の意義 内藤, 紘一九州大学大学院人間環境学府 京都橘大学健康科学部 熊谷, 秋三九州大学大学院人間環境学府 九州大学基幹教育院 九州大

九州大学学術情報リポジトリ Kyushu University Institutional Repository 高齢心疾患患者における運動機能と身体的フレイル評価の意義 内藤, 紘一九州大学大学院人間環境学府 京都橘大学健康科学部 熊谷, 秋三九州大学大学院人間環境学府 九州大学基幹教育院 九州大 九州大学学術情報リポジトリ Kyushu University Institutional Repository 高齢心疾患患者における運動機能と身体的フレイル評価の意義 内藤, 紘一九州大学大学院人間環境学府 京都橘大学健康科学部 熊谷, 秋三九州大学大学院人間環境学府 九州大学基幹教育院 九州大学キャンパスライフ 健康支援センター https://doi.org/10.15017/1800856

More information

Healthcare_Errorproofing.PDF

Healthcare_Errorproofing.PDF EP_1 Error Proofing in Healthcare EP_2 Institute of Medicine EP_3 EP_4 EP_5 1 0.01 0.00001 0.1 0.000001 0.1 EP_6 Yes No Yes Yes No No EP_7 3% 1-0.35 5 =0.99 33 EP_8 a b EP_9 EP_10 EP_11 Solution Direction

More information

Influences of mortality from main causes of death on life expectancy. \ An observation for the past 25 years, 1950-1975, in Japan \ Takao SHIGEMATSU* and Zenji NANJO** With the Keyfitz-Nanjo method an

More information

特殊病態下感染症における抗菌薬治験の手引き作成委員会報告書(案)

特殊病態下感染症における抗菌薬治験の手引き作成委員会報告書(案) VOL.51 NO.6 JUNE 2003 JUNE 2003 9) Niederman MS et al: Guidelines for the management of adults with community-acquired pneumonia. Diagnosis, assessment of severity, antimicrobial therapy and prevention.

More information

スライド 1

スライド 1 生存時間解析における Lakatos の症例数設計法の有用性の評価 魚住龍史, * 水澤純基 浜田知久馬 日本化薬株式会社医薬データセンター 東京理科大学工学部経営工学科 Evaluation of availability about sample size formula by Lakatos on survival analysis Ryuji Uozumi,, * Junki Mizusawa,

More information

図 1 緩和ケアチーム情報共有データベースの患者情報画面 1 患者氏名, 生年月日, 性別, 緩和ケアチームへの依頼内容について,2 入退院記録, 3カンファレンス ラウンド実施一覧,4 問題点のリスト,5 介入内容の記録. 図 2 緩和ケアチームカンファレンス ラウンドによる患者評価入力画面 (

図 1 緩和ケアチーム情報共有データベースの患者情報画面 1 患者氏名, 生年月日, 性別, 緩和ケアチームへの依頼内容について,2 入退院記録, 3カンファレンス ラウンド実施一覧,4 問題点のリスト,5 介入内容の記録. 図 2 緩和ケアチームカンファレンス ラウンドによる患者評価入力画面 ( 2015; 10(2): 901 5 活動報告 緩和ケアチームデータベースの改良に向けた取り組み 渡邊裕之 1,4), 江藤美和子 2,4) 3,4), 山﨑圭一 1 2 3 4 受付日 2014 年 9 月 10 日 / 改訂日 2015 年 1 月 29 日 / 受理日 2015 年 2 月 3 日 2011 年に, ベルランド総合病院緩和ケアチーム ( 以下,PCT) で構築した PCT 情報共有データベース

More information

Postoperative Assessment by Using a Torque Machine (BIODEX) and MRIs in Patients treated for a Recurrent Anterior Dislocation or Subluxation of the Sh

Postoperative Assessment by Using a Torque Machine (BIODEX) and MRIs in Patients treated for a Recurrent Anterior Dislocation or Subluxation of the Sh Postoperative Assessment by Using a Torque Machine (BIODEX) and MRIs in Patients treated for a Recurrent Anterior Dislocation or Subluxation of the Shoulder by HATA Yukihiko MURAKAMI Narumichi Department

More information

qx

qx * ** *** **** * ** *** **** 20 204 203 [1] [2] [3][4] [5][6] [7] [8] [9] [10] [11] BMI 12 1978 198880 [12] 80 [13] 212121 QOL 2000 2010 701 23 3 2004 [10] 407 18 22204203 238 9277 238112126 13 [10] 13

More information

NLMIXED プロシジャを用いた生存時間解析 伊藤要二アストラゼネカ株式会社臨床統計 プログラミング グループグルプ Survival analysis using PROC NLMIXED Yohji Itoh Clinical Statistics & Programming Group, A

NLMIXED プロシジャを用いた生存時間解析 伊藤要二アストラゼネカ株式会社臨床統計 プログラミング グループグルプ Survival analysis using PROC NLMIXED Yohji Itoh Clinical Statistics & Programming Group, A NLMIXED プロシジャを用いた生存時間解析 伊藤要二アストラゼネカ株式会社臨床統計 プログラミング グループグルプ Survival analysis using PROC NLMIXED Yohji Itoh Clinical Statistics & Programming Group, AstraZeneca KK 要旨 : NLMIXEDプロシジャの最尤推定の機能を用いて 指数分布 Weibull

More information

untitled

untitled SGPLOT 1, 2 * 1 1 2 Drawing the useful graphs for the tumor shrinkage assessment in cancer clinical trials Innovative uses of new features in PROC SGPLOT Ryuji Uozumi 1, 2 * and Chikuma Hamada 1 1 Department

More information

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

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

More information

Changes in Electrodermal Activity Associated with Candies and Chewing Gum Chewing Satoshi Beppu, Takeshi Morita*, Susumu Igarashi **, Kanichi Seto* an

Changes in Electrodermal Activity Associated with Candies and Chewing Gum Chewing Satoshi Beppu, Takeshi Morita*, Susumu Igarashi **, Kanichi Seto* an Changes in Electrodermal Activity Associated with Candies and Chewing Gum Chewing Satoshi Beppu, Takeshi Morita*, Susumu Igarashi **, Kanichi Seto* and Yosihiro Amemiya Abstract: This study was designed

More information

Table 1 Characteristics of the study participants in Imari municipal hospital

Table 1 Characteristics of the study participants in Imari municipal hospital Key words: tuberculosis, booster phenomenon, two-step tuberculin test Table 1 Characteristics of the study participants in Imari municipal hospital Fig. 1 Frequency distributions of size of the first tuberculin

More information

Mantel-Haenszelの方法

Mantel-Haenszelの方法 Mantel-Haenszel 2008 6 12 ) 2008 6 12 1 / 39 Mantel & Haenzel 1959) Mantel N, Haenszel W. Statistical aspects of the analysis of data from retrospective studies of disease. J. Nat. Cancer Inst. 1959; 224):

More information

Special IssueDiagnoses and therapeutic agents for age-related diseases Reviews Original Case reports β Medicinal drugs affecting on clinical laboratory blood test results and adverse effects of them

More information

PDFfl[ŁiŠp_Œ{Ł¶…g…fi…{Łt‡«.pdf

PDFfl[ŁiŠp_Œ{Ł¶…g…fi…{Łt‡«.pdf 診断 治療 技術講座 2018; 29 4 : 413-420 APTT 波形解析 APTT waveform Hideo WADA Key words: APTT, waveform, hemophilia, anticoagulant therapy 1978 1982 1982 1983 1985 NIH 1985 2000 / 2008 1 activated partial thromboplastin

More information

名称未設定-1

名称未設定-1 Study on Clinical Factors Affecting the Fungal Culture Test - Relevance of Dry Mouth - Yoshiko YAMAMURA, Yukihiro MOMOTA, Hideyuki TAKANO, Koichi KANI, Katsumi MOTEGI, Fumihiro MATSUMOTO, Masayuki AZUMA

More information

2 94

2 94 32 2008 pp. 93 106 1 Received October 30, 2008 The purpose of this study is to examine the effects of aerobics training class on weight loss for female students in HOKURIKU UNIVERSITY. Seventy four female

More information

fiš„v8.dvi

fiš„v8.dvi (2001) 49 2 333 343 Java Jasp 1 2 3 4 2001 4 13 2001 9 17 Java Jasp (JAva based Statistical Processor) Jasp Jasp. Java. 1. Jasp CPU 1 106 8569 4 6 7; fuji@ism.ac.jp 2 106 8569 4 6 7; nakanoj@ism.ac.jp

More information

Microsoft Word - 第7回傾向スコア.docx

Microsoft Word - 第7回傾向スコア.docx 東北大学病院循環器内科 東北大学臨床研究推進センター共催 東北大学大学院医学系研究科 EBM 開発学寄附講座 宮田敏 Data! data! data! he cred mpatently. I can't make brcks wthout clay. From The Adventure of the Copper Beeches, The Adventure of Sherlock Holmes.

More information

所得の水準とばらつきの時系列的推移について-JGSSと政府統計の比較-

所得の水準とばらつきの時系列的推移について-JGSSと政府統計の比較- Trends of Income Level and Distribution: Comparison of the results of Data and Government Statistics Takehisa SHINOZAKI School of Creative Science and Engineering, Faculty of Science and Engineering, Waseda

More information

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

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

More information

untitled

untitled ( ) - 1 - - 2 - 38% 26% A) Response to ifosfamide and mesna: 124 previously treated patients with metastatic or unresectable sarcoma 124 (J Clin Oncol 7: 126-131, 1989) 124 95 29 II 1 2,000mg/m 2 x 4 8g/m

More information

胆石症

胆石症 ,. vs 64 .. vs. -, Ransohoff DF, Gracie W. Treatment of gallstones. Ann Intern Med ; 119 : - Halldestam I, Enell EL, Kullman E, et al. Development of symptoms and complications in individuals with asymptomatic

More information

4703ALL01

4703ALL01 473201010 *** (1999) 16 2017 20023 2 1 2 1220 (1999a),(1999b) (1998), (2002) (2003)(1999)(2003) Conjoint Analysis Conjoint Analysis Willingness to PayStandard gamble Time trade-off Rating Scale Willingness

More information

Studies of Foot Form for Footwear Design (Part 9) : Characteristics of the Foot Form of Young and Elder Women Based on their Sizes of Ball Joint Girth

Studies of Foot Form for Footwear Design (Part 9) : Characteristics of the Foot Form of Young and Elder Women Based on their Sizes of Ball Joint Girth Studies of Foot Form for Footwear Design (Part 9) : Characteristics of the Foot Form of Young and Elder Women Based on their Sizes of Ball Joint Girth and Foot Breadth Akiko Yamamoto Fukuoka Women's University,

More information

<95DB8C9288E397C389C88A E696E6462>

<95DB8C9288E397C389C88A E696E6462> 2011 Vol.60 No.4 p.332 338 Usefulness of regional education program for dietary salt reduction: Self-monitoring of urinary salt excretion Kenichiro YASUTAKE[1] Kayoko SAWANO[1] Shoko YAMAGUCHI[1] Hiroko

More information

Stata 11 Stata ROC whitepaper mwp anova/oneway 3 mwp-042 kwallis Kruskal Wallis 28 mwp-045 ranksum/median / 31 mwp-047 roctab/roccomp ROC 34 mwp-050 s

Stata 11 Stata ROC whitepaper mwp anova/oneway 3 mwp-042 kwallis Kruskal Wallis 28 mwp-045 ranksum/median / 31 mwp-047 roctab/roccomp ROC 34 mwp-050 s BR003 Stata 11 Stata ROC whitepaper mwp anova/oneway 3 mwp-042 kwallis Kruskal Wallis 28 mwp-045 ranksum/median / 31 mwp-047 roctab/roccomp ROC 34 mwp-050 sampsi 47 mwp-044 sdtest 54 mwp-043 signrank/signtest

More information

橡

橡 TP T-13i AST ALT ALP Y CTP LOH CHE CRP 8.7 id 0.4 mg/d 21 AWL 131U/L 257 LU/L 12 111/L 234 11J/L 344 IU/L 0.30 mid No K a BUN ORE UA 142 meq/1 4.3 meqa 108 meqa 15.8 met! 0.71 mg/di 5.0 mg/d CEA 5_5 n8/m1

More information

1.7 D D 2 100m 10 9 ev f(x) xf(x) = c(s)x (s 1) (x + 1) (s 4.5) (1) s age parameter x f(x) ev 10 9 ev 2

1.7 D D 2 100m 10 9 ev f(x) xf(x) = c(s)x (s 1) (x + 1) (s 4.5) (1) s age parameter x f(x) ev 10 9 ev 2 2005 1 3 5.0 10 15 7.5 10 15 ev 300 12 40 Mrk421 Mrk421 1 3.7 4 20 [1] Grassberger-Procaccia [2] Wolf [3] 11 11 11 11 300 289 11 11 1 1.7 D D 2 100m 10 9 ev f(x) xf(x) = c(s)x (s 1) (x + 1) (s 4.5) (1)

More information

_’£”R‡Ù‡©

_’£”R‡Ù‡© 29 31 38 2008 31 1) 2) 2) 3) 2) 1) 2008 302008 12 Activities of Daily Living ADL ADL 42 ADL ADL 1990 QOL Quality of Life QOL 1 QOL // 2 Activity of Daily Living ADL Performance Status PS ADL 3 1) 2) 3)

More information

Microsoft Word - Power_Analysis_Jp_ docx

Microsoft Word - Power_Analysis_Jp_ docx Power Analysis using G*Power Version 1.0 013 年 3 月 03 日 評価学博士 佐々木亮 サンプルサイズの検討方法 1. 最低のサンプルサイズサンプルサイズに関する考え方 統計分析を用いた調査報告書では サンプルサイズとして 30 あるいは 5 を用いている場合が頻繁に見られる 事前 事後比較のための 1 群の t 検定では まさに 30 あるいは 5 が必要ということになり

More information

欠測を含む順序カテゴリカル経時データの解析 -GEE プロシジャの有用性 - 駒嵜弘 1 藤原正和 2 ( 1 マルホ株式会社 2 塩野義製薬株式会社 ) Ordinal longitudinal data analysis with missing data -Usefulness of Proc

欠測を含む順序カテゴリカル経時データの解析 -GEE プロシジャの有用性 - 駒嵜弘 1 藤原正和 2 ( 1 マルホ株式会社 2 塩野義製薬株式会社 ) Ordinal longitudinal data analysis with missing data -Usefulness of Proc 欠測を含む順序カテゴリカル経時データの解析 -GEE プロシジャの有用性 - 駒嵜弘 藤原正和 2 ( マルホ株式会社 2 塩野義製薬株式会社 ) Ordinal longitudinal data analysis with missing data -Usefulness of Proc GEE- Hiroshi Komazaki,Masakazu Fujiwara 2 Maruho Co, Ltd.,

More information

Microsoft PowerPoint - 【配布・WEB公開用】SAS発表資料.pptx

Microsoft PowerPoint - 【配布・WEB公開用】SAS発表資料.pptx 生存関数における信頼区間算出法の比較 佐藤聖士, 浜田知久馬東京理科大学工学研究科 Comparison of confidence intervals for survival rate Masashi Sato, Chikuma Hamada Graduate school of Engineering, Tokyo University of Science 要旨 : 生存割合の信頼区間算出の際に用いられる各変換関数の性能について被覆確率を評価指標として比較した.

More information

08医療情報学22_1_水流final.PDF

08医療情報学22_1_水流final.PDF 22 (1), 702002: 59 59- The Problem of Nursing Common Language for the Information Sharing in Clinical Practice The fact-finding in regard to the correspondence between name and content of nursing action

More information

@08460025ヨコ/伊東 217号

@08460025ヨコ/伊東 217号 A B B A B A B A B stratification inequality Marmot, Smith, Why are the Japanese living longer?, British Medical Journal, 1989 Kondo, Kawachi, Subramanian, Takeda, Yamagata Do social comparisons

More information

Presentation Title Goes Here

Presentation  Title Goes Here SAS 9: (reprise) SAS Institute Japan Copyright 2004, SAS Institute Inc. All rights reserved. Greetings, SAS 9 SAS 9.1.3 Copyright 2004, SAS Institute Inc. All rights reserved. 2 Informations of SAS 9 SAS

More information

NINJAL Research Papers No.8

NINJAL Research Papers No.8 (NINJAL Research Papers) 8: 177 196 (2014) ISSN: 2186-134X print/2186-1358 online 177 3 3 3 1940 3 late adoption real time 3 apparent time * 1. 1 2 3 1.1 3 1 1953 * 2014 3 18 2014 5 13 109 NINJAL 2012

More information

スライド 1

スライド 1 1 2006 msv 2 2011 3 CT 2011 10mSv 10 40mSv 4 2012 217mSv 5 (CT) 2012 50 60mSv 6 2012 510mSv BRCA25 310 10mSv3% BRCA60-280% 3 5m Sv 1m Sv 12% . http://www.rea.or.jp/ire/pdf/report4.pdf 1.10 20 SMR 1.00

More information

3 2 2 (1) (2) (3) (4) 4 4 AdaBoost 2. [11] Onishi&Yoda [8] Iwashita&Stoica [5] 4 [3] 3. 3 (1) (2) (3)

3 2 2 (1) (2) (3) (4) 4 4 AdaBoost 2. [11] Onishi&Yoda [8] Iwashita&Stoica [5] 4 [3] 3. 3 (1) (2) (3) (MIRU2012) 2012 8 820-8502 680-4 E-mail: {d kouno,shimada,endo}@pluto.ai.kyutech.ac.jp (1) (2) (3) (4) 4 AdaBoost 1. Kanade [6] CLAFIC [12] EigenFace [10] 1 1 2 1 [7] 3 2 2 (1) (2) (3) (4) 4 4 AdaBoost

More information

NCDデータを用いた全国消化器外科領域内視鏡手術の現況に関する調査結果(速報)

NCDデータを用いた全国消化器外科領域内視鏡手術の現況に関する調査結果(速報) 2014.12 NCD データを用いた全国消化器外 科領域腹腔鏡手術の現況に関する 緊急調査結果 ( 速報 ) 日本外科学会 日本消化器外科学会 Na&onal Clinical Database 1 目的 腹腔鏡手術を受けた患者が合併症などにより残念な結果となったという昨今の報道を受け わが国の腹腔鏡消化器外科手術の症例数の現状と安全性を緊急調査する 2 方法 2011-2013 年の 3 年間に

More information

149 (Newell [5]) Newell [5], [1], [1], [11] Li,Ryu, and Song [2], [11] Li,Ryu, and Song [2], [1] 1) 2) ( ) ( ) 3) T : 2 a : 3 a 1 :

149 (Newell [5]) Newell [5], [1], [1], [11] Li,Ryu, and Song [2], [11] Li,Ryu, and Song [2], [1] 1) 2) ( ) ( ) 3) T : 2 a : 3 a 1 : Transactions of the Operations Research Society of Japan Vol. 58, 215, pp. 148 165 c ( 215 1 2 ; 215 9 3 ) 1) 2) :,,,,, 1. [9] 3 12 Darroch,Newell, and Morris [1] Mcneil [3] Miller [4] Newell [5, 6], [1]

More information

TDM研究 Vol.26 No.2

TDM研究 Vol.26 No.2 測定した また Scrは酵素法にて測定し その参考基 r =0.575 p

More information

untitled

untitled 5 K 5 3 HP http://www.mhlw.go.jp/bunya/shakaihosho/iryouseido01/taikou03.html 2004 1 2 1 http://www.dm-net.co.jp/calendar/2007/06/005835.php 6 85cm 100cm 2 90cm 2 TG 150mg/dl HDLHDL-C 40mg/dl 130mmHg 85mmHg

More information

CHEMOTHERAPY Fig. 1 Body weight changes of pregnant mice treated orally with AM- 715 Day of sestation

CHEMOTHERAPY Fig. 1 Body weight changes of pregnant mice treated orally with AM- 715 Day of sestation CHEMOTHERAPY CHEMOTHERAPY Fig. 1 Body weight changes of pregnant mice treated orally with AM- 715 Day of sestation CHEMOTHERAPY Table 1 Preliminaly test of AM- 715 1): Mean } SD *: Significant difference

More information

75 Author s Address: Possibility of Spatial Frequency Analysis of the Three-dimensional Appearance and Texture of Facial Skin

75 Author s  Address: Possibility of Spatial Frequency Analysis of the Three-dimensional Appearance and Texture of Facial Skin 75 Author s E-mail Address: torii@shoin.ac.jp Possibility of Spatial Frequency Analysis of the Three-dimensional Appearance and Texture of Facial Skin in Male Portraits TORII Sakura Faculty of Human Sciences,

More information

A5 PDF.pwd

A5 PDF.pwd Average Treatment Effect; ATE attributes Randomized Factorial Survey Experiment; RFSE cues ATE ATE Hainmueller et al. 2014 Average Marginal Component Effect ATE 67 4 2017 2 845 , ;, ATE, ;, ;, W 846 67

More information

IPSJ SIG Technical Report Vol.2016-CE-137 No /12/ e β /α α β β / α A judgment method of difficulty of task for a learner using simple

IPSJ SIG Technical Report Vol.2016-CE-137 No /12/ e β /α α β β / α A judgment method of difficulty of task for a learner using simple 1 2 3 4 5 e β /α α β β / α A judgment method of difficulty of task for a learner using simple electroencephalograph Katsuyuki Umezawa 1 Takashi Ishida 2 Tomohiko Saito 3 Makoto Nakazawa 4 Shigeichi Hirasawa

More information

多目的な障害予防のための「ニコニコ体操」

多目的な障害予防のための「ニコニコ体操」 "Enjoyable Exercises" as multipurpose prevention exercise Koji Yamashita1) Department of Physical Therapy, Faculty of Health Sciences, Aomori University of Health and Welfare 13)Marras WS, Ferguson

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

GB 3rd edition final.ppt

GB 3rd edition final.ppt Complementary and Alternative Medicine (National Center for Complementary and Alternative Medicine; NCCAM) Complementary and alternative medicine is a group of diverse medical and health care systems,

More information

flF™m…−…n„Efic’æ’¶

flF™m…−…n„Efic’æ’¶ 44 2006 Cognitive Rehabilitation by means of Personal Computer for Cerebrovascular Disease Patients with Attentional Disorders 1 1 2 2 5 4 1 PC ABA design 4 PASATTMT Ponsford PC SAS working memoryattention

More information

Visual Evaluation of Polka-dot Patterns Yoojin LEE and Nobuko NARUSE * Granduate School of Bunka Women's University, and * Faculty of Fashion Science,

Visual Evaluation of Polka-dot Patterns Yoojin LEE and Nobuko NARUSE * Granduate School of Bunka Women's University, and * Faculty of Fashion Science, Visual Evaluation of Polka-dot Patterns Yoojin LEE and Nobuko NARUSE * Granduate School of Bunka Women's University, and * Faculty of Fashion Science, Bunka Women's University, Shibuya-ku, Tokyo 151-8523

More information

Therapy for Asthenopia in Cases of Convergence Insufficiency Hiroko TAKASAKI, C.O.J., Nobuko INAGAMI, C.O.J., and Kayoko TAKENAWA, C.O.J.. Orthoptic c

Therapy for Asthenopia in Cases of Convergence Insufficiency Hiroko TAKASAKI, C.O.J., Nobuko INAGAMI, C.O.J., and Kayoko TAKENAWA, C.O.J.. Orthoptic c Therapy for Asthenopia in Cases of Convergence Insufficiency Hiroko TAKASAKI, C.O.J., Nobuko INAGAMI, C.O.J., and Kayoko TAKENAWA, C.O.J.. Orthoptic clinic, Department of Ophthalmology, (Director: Prof

More information

<4D F736F F D2088E38A77939D8C7695D78BAD89EF313791E63789F18C588CFC E646F6378>

<4D F736F F D2088E38A77939D8C7695D78BAD89EF313791E63789F18C588CFC E646F6378> 東北大学病院循環器内科 東北大学病院臨床研究推進センター共催東北大学大学院医学系研究科 EBM 開発学寄附講座宮田敏 Absence of evdence s not evdence of absence! - Carl Sagan - 1 1. 因果効果と交絡因子 医学において新規薬剤が開発されたり, 新たな手術技法が考案されたりしたとき, これらの新しい処置 (= 医学的介入 ) の因果効果を検証するための研究が行われます

More information

日本消化器外科学会雑誌第30巻第3号

日本消化器外科学会雑誌第30巻第3号 Key words : gastric cancer, progltostic factor. multivariate analysis Factors selected after Coffelation- after Stepwise rnitrally check check H o s t l A g e C O 2 S e x C O 3 Pre-op. compliation O Treatment

More information

A Clinical Study on Dental CAD/CAM CEREC(R) System Fitness of CEREC(R) Porcelain Laminate Veneers-- Takashi Nakamura, Yutaka Tanaka*, Hiroyuki Ogawa,

A Clinical Study on Dental CAD/CAM CEREC(R) System Fitness of CEREC(R) Porcelain Laminate Veneers-- Takashi Nakamura, Yutaka Tanaka*, Hiroyuki Ogawa, A Clinical Study on Dental CAD/CAM CEREC(R) System Fitness of CEREC(R) Porcelain Laminate Veneers-- Takashi Nakamura, Yutaka Tanaka*, Hiroyuki Ogawa, Takeshi Akao, Aogu Imanishi, Toshizumi Hino and Takao

More information

暑熱順化の形成過程に関する研究 : サーモグラフィ装置によるヒト発汗部皮膚温測定

暑熱順化の形成過程に関する研究 : サーモグラフィ装置によるヒト発汗部皮膚温測定 NAOSITE: Nagasaki University's Ac Title 暑 熱 順 化 の 形 成 過 程 に 関 する 研 究 : サーモグラフィ 装 置 によるヒト 発 汗 部 皮 膚 温 測 定 Author(s) 大 渡, 伸 ; 小 坂, 光 男 ; 土 屋, 勝 彦 ; 井 元, 孝 章 ; 藤 原, Citation 熱 帯 医 学 Tropical medicine 25(1).

More information

E Societe de Pathologie Infectieuse de Langue Francaise (, 1991) E Spanish Thoracic Society (1992) E American Thoracic Society (ATS : 1993. ü ù2001 ) E British Thoracic Society (1993, ü è2001 ) E Canadian

More information

untitled

untitled 48 B 17 4 Annuals of Disas. Prev. Res. Inst., Kyoto Univ., No. 48 B, 2005 (CO 2 ) (2003) Sim-CYCLE(Ito and Oikawa, 2000) CO 2 CO 2 Figure 1 CO 2 0 (Denning et al., 1995) CO 2 (2004) Sim-CYCLE CO 2 CO 2

More information

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

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

More information

LWW EJ on Ovid LWW Ovid Online (Ovid Web Gateway) Ovid Online LWW tutorial Ovid Online Refresh Ovid Online LWW Ovid Medline, Cinahl, EBMR, Ovid

LWW EJ on Ovid LWW Ovid Online (Ovid Web Gateway) Ovid Online LWW tutorial Ovid Online Refresh Ovid Online LWW Ovid Medline, Cinahl, EBMR, Ovid LWW EJ on Ovid Tutorial For Kagawa University Sep 2005 Ovid Technologies Japan Office japan@ovid.com Visit our homepage at http://www.ovid.jp/site/index.html for more Japanese documents and latest news.

More information

Quality of Life of Outpatients Treated with Low Anterior Resection or Anterior Resection for Colorectal Cancer orrelation Between Dyschezia and Self-c

Quality of Life of Outpatients Treated with Low Anterior Resection or Anterior Resection for Colorectal Cancer orrelation Between Dyschezia and Self-c Quality of Life of Outpatients Treated with Low Anterior Resection or Anterior Resection for Colorectal Cancer orrelation Between Dyschezia and Self-completed QOL Questionnaire- Nami Imai *1, Yoshihiro

More information

1. King, V. L., Y. Koketsu, D. Reeves, JL. Xue, G. D. Dial.: Management factors associated with swine breeding herd productivity in the USA. Prey. Vet. Med. 35 : 255-264, 1998. 2. Koketsu, Y., J. E. Pettigrew,

More information

日本消化器外科学会雑誌第29巻第9号

日本消化器外科学会雑誌第29巻第9号 Table 1 Oligonucleotide primers used for RT-PCR and internal probes used for Southern blot hybridization Cytokine Primer Sequence (5'-3') 5' 3' Internal probe s' 3' Internal probe 5' 3' Internal probe

More information

雇用と年金の接続 在職老齢年金の就業抑制効果と老齢厚生年金受給資格者の基礎年金繰上げ受給要因に関する分析 The Labour Market Behaviour of Older People: Analysing the Impact of the Reformed "Earning Test"

雇用と年金の接続 在職老齢年金の就業抑制効果と老齢厚生年金受給資格者の基礎年金繰上げ受給要因に関する分析 The Labour Market Behaviour of Older People: Analysing the Impact of the Reformed Earning Test Powered by TCPDF (www.tcpdf.org) Title 雇用と年金の接続 : 在職老齢年金の就業抑制効果と老齢厚生年金受給資格者の基礎年金繰上げ受給要因に関する分析 Sub Title The labour market behaviour of older people: analysing the impact of the reformed "Earning test"

More information

SAS Web XML * ** * ** Web Data Analysis with SAS Input and Output of XML Data and Application to Real Estate Valuation Map Junnosuke Matsushima*, Hiro

SAS Web XML * ** * ** Web Data Analysis with SAS Input and Output of XML Data and Application to Real Estate Valuation Map Junnosuke Matsushima*, Hiro SAS Web XML * ** * ** Web Data Analysis with SAS Input and Output of XML Data and Application to Real Estate Valuation Map Junnosuke Matsushima*, Hiroshi Ishijima**, Ikue Watanabe *Clinical Research Planning

More information

Kaplan-Meierプロットに付加情報を追加するマクロの作成

Kaplan-Meierプロットに付加情報を追加するマクロの作成 Kaplan-Meier 1, 2,3 1 2 3 A SAS macro for extended Kaplan-Meier plots Kengo Nagashima 1, Yasunori Sato 2,3 1 Department of Parmaceutical Technochemistry, Josai University 2 School of Medicine, Chiba University

More information

Human Welfare 8‐1☆/5.林

Human Welfare 8‐1☆/5.林 J 2015 J J1 18 J2 22 J3 12 J 22 2015 52 1993 10 23 43 10 37 J J bj 2014-2015 2015-2016 bj 2005 6 22 4 19 2012 Human Welfare 8 1 2016 2004 2013 2009!!!!!!!! 2013 2005 2012 2012 2008 1999 2006 2007 J 2012

More information

Ⅰ. 緒言 Suzuki, et al., Ⅱ. 研究方法 1. 対象および方法 1 6 表 1 1, 調査票の内容 図

Ⅰ. 緒言 Suzuki, et al., Ⅱ. 研究方法 1. 対象および方法 1 6 表 1 1, 調査票の内容 図 The Journal of the Japan Academy of Nursing Administration and Policies Vol 12, No 1, pp 515, 2008 原著 病棟勤務看護師の勤務状況とエラー ニアミスのリスク要因 Relationship between Risk Factors Related Medical Errors and Working Conditions

More information

A comparison of abdominal versus vaginal hysterectomy for leiomyoma and adenomyosis Kenji ARAHORI, Hisasi KATAYAMA, Suminori NIOKA Department of Obstetrics and Gnecology, National Maizuru Hospital,Kyoto,

More information

短距離スプリントドリルが大学生野球選手の短距離走速度向上に与える効果

短距離スプリントドリルが大学生野球選手の短距離走速度向上に与える効果 The Effect of Sprint Drills for Improving Short Sprinting Ability of University Baseball Players AKAIKE, Kohei The ability to generate speed during short sprints is one of the most important abilities

More information

ABSTRACT The Social Function of Boys' Secondary Schools in Modern Japan: From the Perspectives of Repeating and Withdrawal TERASAKI, Satomi (Graduate School, Ochanomizu University) 1-4-29-13-212, Miyamaedaira,

More information