untitled

Size: px
Start display at page:

Download "untitled"

Transcription

1 SGPLOT 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 of Management Science, Tokyo University of Science 2 Clinical Data Management and Biostatistics, Nippon Kayaku Co., Ltd * ryuji.uozumi@nipponkayaku.co.jp

2 V9.3SG (Statistical Graphics) Procedures Statistical Graphics; SGPLOT; Response Rate; Waterfall; SGANNO; Time-to-event; Cancer; Clinical Trials SASWeb

3 SG (Statistical Graphics) Procedures SGPLOT SGPANEL SGSCATTER SGRENDER 21 1 Graph Template Language (GTL), (2011) LIFETESTODS Kaplan-Meier 3

4 SGRENDERKaplan-Meier 9. SGRENDER LIFETEST 4

5 ! SGPLOT 5

6 1. 2. Waterfall

7 (1/4) Waterfall

8 2. 1. (95%)!? RECIST CR PR SD PD (95%) [33.70 to 58.96] FREQ 8

9 VBARPARM ResponseRate SAS (%) [95%CI] proc sgplot data=responserate; vbarparm category=group response=responserate / limitlower=lower limitupper=upper; xaxis display=(nolabel noticks); yaxis label= Response Rate (%) values=(0 to 100 by 10); run; [33.70 to 58.96] 1. V9.3 ResponseRate : 9

10 Waterfall 1. Waterfall???! Waterfall? 10

11 (2/4) 2. Waterfall Waterfall

12 Waterfall Waterfall Waterfall! 100 Maximum Tumor Change From Baseline (%) Nosov DA, et al. J Clin Oncol 2012; 30(14):

13 Waterfall (%) TumorChange Waterfall proc sgplot; vbar order / response=tumorchange; run; -100 order :: 4. 0% 13

14 Waterfall 2. Waterfall proc sgplot data=waterfall noautolegend; vbar order / response=tumorchange barwidth=0.95 transparency=0.5 name='recist' group=recist grouporder=ascending ; xaxis display=(novalues nolabel noticks); Waterfall yaxis label='change from Baseline (%)' values=(-100 to 100 by 20); keylegend 'RECIST' / position=topright location=inside down=4 noborder ; run; WATERFALL : 14

15 SGPLOTWaterfall 2. Waterfall 15

16 SGPLOTWaterfall 2. Waterfall Waterfall V9.3 proc sgplot data=waterfall; waterfall category=order response=tumorchange / colorgroup=recist ; run; 16

17 Waterfall 10. WATERFALL 2. Waterfall V

18 Waterfall (1/2) Waterfall < 0 () 100 Maximum Tumor Change From Baseline (%) n = XXX/XXX (XX%) Nosov DA, et al. J Clin Oncol 2012; 30(14):

19 Waterfall (2/2) Waterfall Stacchiotti S, et al. J Clin Oncol 2012; 30(9):

20 SGPLOTWaterfall 2. Waterfall < 0 () () () 20

21 SGPLOT 2. Waterfall HIGHLOW y V9.3 y x x x or y proc sgplot; highlow high= low= y= <or x= > / type=line highcap= lowcap= ; run; VECTOR y x y x proc sgplot; vector x= y= / arrowdirection= xorigin= yorigin= ; run; 21

22 VECTOR 2. Waterfall proc sgplot data=waterfall00; vector x=xmax y=ymax / arrowdirection=both xorigin=xmin yorigin=ymin lineattrs=(thickness=3px pattern=solid color=black) ; run; (xorigin, yorigin) (x, y) 22

23 HIGHLOW 2. Waterfall proc sgplot data=waterfall00; highlow high=xmax low=xmin y=ymax / type=line lineattrs=(color=black thickness=3px) highcap=barbedarrow lowcap=barbedarrow ; run; V9.3 (low, y) (high, y) x or y 23

24 SGPLOT 2. Waterfall proc sgplot data=waterfall00; vbar order / response=tumorchange group=recist ; vector x=xmax y=ymax / arrowdirection=both xorigin=xmin yorigin=ymin lineattrs=(thickness=3px pattern=solid color=black) ; run; HIGHLOW ERROR: 24

25 SGPLOTANNOTATE SGPLOT 2. Waterfall V9.3SGANNO! SGPLOTSGANNO proc sgplot data=waterfall sganno=anno; : : V9.3 run; anno: ANNOTATE 25

26 SGANNO DRAWING SPACE 2. Waterfall Graph Space Layout Space Wall Space Data Space 26

27 ANNOTATE 2. Waterfall (x1=33%, y1=51%) Wall Space (x2=100%, y2=51%) data annotate1; function= ARROW"; direction="both"; scale=0.5; x1space="wallpercent"; x2space="wallpercent"; y1space="wallpercent"; y2space="wallpercent"; x1=33; y1=51; x2=100; y2=51; output; ARROW function run; 27

28 ANNOTATE 2. Waterfall (x1=65%, y1=52%) data annotate2; function= TEXT"; width=100; anchor="bottom"; x1space="wallpercent"; y1space="wallpercent"; x1=65; y1=52; label="n = 46 / 65 (70.8%)"; output; TEXT function run; 28

29 ANNOTATE 2. Waterfall data annotate3;set waterfall; where ast=1; function= TEXT"; justify="center"; x1space="datavalue"; x1=order; y1space="datavalue"; y1=tumorchange; label="*"; output; TEXT function run; If 0<=TumorChange then do; anchor="bottom"; end; If TumorChange<0 then do; anchor= top"; end; 29

30 SGANNOSGPLOT 2. Waterfall SGANNO data anno; set annotate1 annotate2 annotate3; run; REFLINE : proc sgplot data=waterfall noautolegend sganno=anno; vbar <vbar statement>; V9.3 : refline / axis=y lineattrs=(pattern=dash); : run; 30

31 2. Waterfall SGANNOWaterfall 31

32 SGPLOT SGANNO 2. Waterfall < 0 () () () 32

33 2. Waterfall!?? 33

34 (3/4) Waterfall

35 Waterfall Kaplan-Meier 35

36 / / 7. 3.! Sosman JA, et al. N Engl J Med 2012; 366(8):

37 3. VECTOR / SCATTER proc sgplot data=timetoevent00 noautolegend; vector x=ttp y=order / noarrowheads yorigin=order lineattrs=(pattern=solid color=yellow) ; scatter x=os0 y=order / markerattrs=(symbol=circlefilled color=red) ; scatter x=ttr y=order / markerattrs=(symbol=diamondfilled color=green) ; scatter x=ttp0 y=order / markerattrs=(symbol=trianglerightfilled color=blue) ; run; TimeToEvent00 : 37

38 3. SGPLOT HBAR / SCATTER 38

39 (4/4) Waterfall

40 4. SGPLOT SG Procedures V9.3SGPLOT SGPLOT V9.3SGANNO : 40

41 1. Delwiche LD, Slaughter SJ. Using PROC SGPLOT for Quick High-Quality Graphs. Proceedings of the SAS Global Forum. Cary, NC: SAS Institute Inc., Available at 2. Eisenhauer EA, Therasse P, Bogaerts J, et al. New Response Evaluation Criteria in Solid Tumours: Revised RECIST Guideline (Version 1.1). Eur J Cancer 2009; 45: Heath D. Secrets of the SG Procedures. Proceedings of the SAS Global Forum. Cary, NC: SAS Institute Inc., Available at 4. Heath D. Now You Can Annotate Your Statistical Graphics Procedure Graphs. Proceedings of the SAS Global Forum. Cary, NC: SAS Institute Inc., Available at 5. Nosov DA, Esteves B, Lipatov ON, et al. Antitumor Activity and Safety of Tivozanib (AV-951) in a Phase II Randomized Discontinuation Trial in Patients With Renal Cell Carcinoma. J Clin Oncol 2012; 30(10): SAS Institute Inc. SAS/GRAPH(R) 9.2: Graph Template Language Reference, Second Edition. Cary, NC, USA: SAS Institute Inc., Sosman JA, Kim KB, Schuchter L, et al. Survival in BRAF V600 Mutant Advanced Melanoma Treated with Vemurafenib. N Engl J Med 2012; 366(8): Stacchiotti S, Longhi A, Ferraresi V, et al. Phase II Study of Imatinib in Advanced Chordoma. J Clin Oncol 2012; 30(9): ,. SG (Statistical Graphics) Procedures Kaplan-Meier. SAS 2011, ,

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

ODS GRAPHICS ON; ODS GRAPHICS ON; PROC TTEST DATA=SASHELP.CLASS SIDE=2 DIST=NORMAL H0=58 PLOTS(ONLY SHOWH0)=(SUMMARY); VAR HEIGHT;

ODS GRAPHICS ON; ODS GRAPHICS ON; PROC TTEST DATA=SASHELP.CLASS SIDE=2 DIST=NORMAL H0=58 PLOTS(ONLY SHOWH0)=(SUMMARY); VAR HEIGHT; Summer 2009 1 8 12 14 16 16 16 ODS GRAPHICS ON; ODS GRAPHICS ON; PROC TTEST DATA=SASHELP.CLASS SIDE=2 DIST=NORMAL H0=58 PLOTS(ONLY SHOWH0)=(SUMMARY); VAR HEIGHT; PROC SGPLOT DATA=SASHELP.PRDSALE; HBAR

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

スライド 1

スライド 1 ODS GRAPHICS を用いた臨床試験データの可視化への挑戦 豊泉樹一郎, 財前政美, 北西由武, 都地昭夫塩野義製薬株式会社解析センター Challenge to Visualize the Clinical Trial Data with ODS Graphics Kiichiro Toyoizumi 1) Masami Zaizen 1) Yoshitake Kitanishi 1) Akio

More information

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

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

More information

要旨 : データステップ及び SGPLOT プロシジャにおける POLYGON/TEXT ステートメントを利用した SAS プログラムステップフローチャートを生成する SAS プログラムを紹介する キーワード :SGPLOT, フローチャート, 可視化 2

要旨 : データステップ及び SGPLOT プロシジャにおける POLYGON/TEXT ステートメントを利用した SAS プログラムステップフローチャートを生成する SAS プログラムを紹介する キーワード :SGPLOT, フローチャート, 可視化 2 SAS プログラムの可視化 - SAS プログラムステップフローチャート生成プログラムの紹介 - 福田裕章 1 ( 1 MSD 株式会社 ) Visualization of SAS programs Hiroaki Fukuda MSD K.K. 要旨 : データステップ及び SGPLOT プロシジャにおける POLYGON/TEXT ステートメントを利用した SAS プログラムステップフローチャートを生成する

More information

Microsoft PowerPoint - SASユーザー会_ _002.pptx

Microsoft PowerPoint - SASユーザー会_ _002.pptx SAS ユーザー総会アカデミア / テクノロジー & ソリューションセッション 2013 データの可視化を加速する SAS/JMP のグラフ新機能 -ODS Graphics と JMP グラフビルダー - 西本尚樹 1. 北海道大学病院高度先進医療支援センター 2. 北海道大学探索医療教育研究センター ( 北海道臨床開発機構 ) 本日の内容 ODS Graphics 基本の き ODS Graphics

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

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

Slide 1

Slide 1 ODS 統 計 グラフ 機 能 を 用 いたグラフの 作 成 SAS Institute Japan 株 式 会 社 プロフェッショナルサービス 本 部 テクニカルサポート 部 深 澤 武 志 Copyright 2010 SAS Institute Inc. All rights reserved. 目 次 ODSとは ODS 統 計 グラフのご 紹 介 ODSテンプレートに 関 して ODS 統

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

日本語論文タイトル

日本語論文タイトル Kaplan-Meier プロット Forest プロット作成の応用 : グラフ出力範囲内 範囲外への数値出力 魚住龍史 1 吉田早織 2 平井隆幸 2 浜田知久馬 1 京都大学大学院医学研究科医学統計生物情報学 2 日本化薬株式会社医薬開発本部解析チーム 3 東京理科大学工学部情報工学科 3 Advancement in both Kaplan-Meier and forest plots: quantitative

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

Rinku General Medical Center

Rinku General Medical Center Rinku General Medical Center 4860 100 1620 Ann Intern Med. 1966; 64: 328 40 CHOP 63 1 83 J Clin Oncol. 1998; 16: 20065-69 Febrile Neutropenia IDSA(Infectious Diseases Society of America) 2002 Guidelines

More information

プラズマ核融合学会誌11月【81‐11】/小特集5

プラズマ核融合学会誌11月【81‐11】/小特集5 Japan Atomic Energy Agency, Ibaraki 311-0193, Japan 1) Kyoto University, Uji 611-0011, Japan 2) National Institute of Advanced Industrial Science and Technology, Tsukuba 305-8569, Japan 3) Central Research

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

こんにちは由美子です

こんにちは由美子です Sample size power calculation Sample Size Estimation AZTPIAIDS AIDSAZT AIDSPI AIDSRNA AZTPr (S A ) = π A, PIPr (S B ) = π B AIDS (sampling)(inference) π A, π B π A - π B = 0.20 PI 20 20AZT, PI 10 6 8 HIV-RNA

More information

スライド 1

スライド 1 QOL 1 Goldberg, JCO 22:23-30, 2004 N9741: Oxaliplatin in First Line (US) IR 200 mg/m 2 OX 85 mg/m 2 every 3 weeks Efficacy IFL FOLFOX4 > IFL IROX FOLFOX4 IROX OS TTP RR 15.0 mo 6.9 mo 31 % P=0.0001 P=0.0014

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

橡

橡 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

untitled

untitled 19 CSPOR CRC/2009.8.8-9 2009 8 8 ( ) - CSPOR CRC SEMINAR- twatanab@oncoloplan.com http://www.oncoloplan.com - Toru Watanabe MD - 2 Phase I: Dose Finding trial Phase II : Efficacy and Safety trial Phase

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

Input image Initialize variables Loop for period of oscillation Update height map Make shade image Change property of image Output image Change time L

Input image Initialize variables Loop for period of oscillation Update height map Make shade image Change property of image Output image Change time L 1,a) 1,b) 1/f β Generation Method of Animation from Pictures with Natural Flicker Abstract: Some methods to create animation automatically from one picture have been proposed. There is a method that gives

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

untitled

untitled 19 11 13 300 18 3 31 1300mg 4 6 C 15 H 22 FN 3 O 6 359.35 + -1-5--β-D--5--1,2--2- -4- 19 11 13 300 18 3 31 A B B A 30 1 2 21 7 1 1 1.31m 2 900mg 1.31m 2 1.64m 2 1,200mg 1.64m 2 1,500mg B 30 1 2 14 7 1

More information

untitled

untitled twatanab@oncoloplan.com http://www.oncoloplan.com I II - III IV Fig 3. Survival curves overall and according to response Bruzzi, P. et al. J Clin Oncol; 23:5117-5125 25 Copyright merican Society of Clinical

More information

News_Letter_No35(Ver.2).p65

News_Letter_No35(Ver.2).p65 OCIAL AFETY CIENCE No.35 2000.8 from Institute of Social Safety Science 10 11 17 11 19 17 181819 18 420-0042 5-9-1 JR 25 Tel 054-251-7100-1 - 10 10 I (1) 12 11 17 19 (2) 5-9-1 JR 25 II (1) 12 9 18 (2)

More information

2 H23 BioS (i) data d1; input group patno t sex censor; cards;

2 H23 BioS (i) data d1; input group patno t sex censor; cards; H BioS (i) data d1; input group patno t sex censor; cards; 0 1 0 0 0 0 1 0 1 1 0 4 4 0 1 0 5 5 1 1 0 6 5 1 1 0 7 10 1 0 0 8 15 0 1 0 9 15 0 1 0 10 4 1 0 0 11 4 1 0 1 1 5 1 0 1 1 7 0 1 1 14 8 1 0 1 15 8

More information

1_2.eps

1_2.eps 第32回 日本頭頸部癌学会ランチョンセミナー6 Pre-Meeting Abstract FDG-PET の頭頸部癌における臨床的有用性 司会 長 放射線治療センター長 講演 1 耳鼻咽喉科 部長 講演 2 PETセンター長 岡村 光英 先生 日時 2008年6月13日 金 12:00 13:00 会場 ハイアットリージェンシー東京 共催 第32回 日本頭頸部癌学会 日本メジフィジックス株式会社 136-0075

More information

スライド 1

スライド 1 ベクター形式を用いたグラフの作成と有用性 平井隆幸 1) 吉田早織 1) 叶健 1) 魚住龍史 2) 1) 日本化薬株式会社開発戦略部 2) 京都大学大学院医学研究科 Graphical representation using vector graphics format Takayuki Hirai 1), Saori Yoshida 1), Takeshi Kanou 1), Ryuji Uozumi

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

スライド 1

スライド 1 ODS POWERPOINTの 活 用 : SASからMicrosoft PowerPointへの エクスポート 吉 田 早 織 1) 平 井 隆 幸 1) 叶 健 1) 魚 住 龍 史 2) 1) 日 本 化 薬 株 式 会 社 開 発 戦 略 部 2) 京 都 大 学 大 学 院 医 学 研 究 科 Application of ODS POWERPOINT s advanced features

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

第79回_プログラム.indd

第79回_プログラム.indd Regulation of ghrelin signaling by a leptin-induced gene, negative regulatory element-binding protein, in the hypothalamic neurons. Phase I clinical trial using peptide vaccine for human vascular endothelial

More information

1 USNET No.13

1 USNET No.13 1 USNET No.13 USNET No.132 3 USNET No.13 USNET No.13 4 5 USNET No.13 USNET No.13 6 7 USNET No.13 New Products Stylish Design More Safety High Quality Global Standard 9 USNET No.13 Trend USNET No.13 10

More information

y = x 4 y = x 8 3 y = x 4 y = x 3. 4 f(x) = x y = f(x) 4 x =,, 3, 4, 5 5 f(x) f() = f() = 3 f(3) = 3 4 f(4) = 4 *3 S S = f() + f() + f(3) + f(4) () *4

y = x 4 y = x 8 3 y = x 4 y = x 3. 4 f(x) = x y = f(x) 4 x =,, 3, 4, 5 5 f(x) f() = f() = 3 f(3) = 3 4 f(4) = 4 *3 S S = f() + f() + f(3) + f(4) () *4 Simpson H4 BioS. Simpson 3 3 0 x. β α (β α)3 (x α)(x β)dx = () * * x * * ɛ δ y = x 4 y = x 8 3 y = x 4 y = x 3. 4 f(x) = x y = f(x) 4 x =,, 3, 4, 5 5 f(x) f() = f() = 3 f(3) = 3 4 f(4) = 4 *3 S S = f()

More information

: / FDA HBsAg HIV 1/2 HCV : QMS : 3.5% IgM () 1.0% H317 - H334 - : : :: : QMS Everolimus : 6.4% (II) H400 - H % SDS QMS EDTA (K 3 ) EDTA (K 2 )

: / FDA HBsAg HIV 1/2 HCV : QMS : 3.5% IgM () 1.0% H317 - H334 - : : :: : QMS Everolimus : 6.4% (II) H400 - H % SDS QMS EDTA (K 3 ) EDTA (K 2 ) QMS (EVER) 0373852 (QMS) QMS QMS X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X

More information

16 23 270 5 1 2 3 1 2 3 1 2 3 6 5 54 44 9 9 4,000 118 7 5 JA 8 1 1 2 16 48,000 1 1 1 1 2 2 3 1, 312. 87 4 5 10 3 31 6 10 4 25 7 3 1 2 8 2 495. 84 1 296. 49 2 199. 35 1 124. 62 54. 50 28. 80 34. 17 54.

More information

*Criteria 1) B-marker positive 2) Variability in nuclear size and shape 3) Giant cells and multinucleated cells

*Criteria 1) B-marker positive 2) Variability in nuclear size and shape 3) Giant cells and multinucleated cells *Criteria 1) B-marker positive 2) Variability in nuclear size and shape 3) Giant cells and multinucleated cells Abbreviation: LC=large cleaved nuclei, LNC=large non-cleaved nuclei, IMBL=immunoblastic nuclei,

More information

Gray [6] cross tabulation CUBE, ROLL UP Johnson [7] pivoting SQL 3. SuperSQL SuperSQL SuperSQL SQL [1] [2] SQL SELECT GENERATE <media> <TFE> GENER- AT

Gray [6] cross tabulation CUBE, ROLL UP Johnson [7] pivoting SQL 3. SuperSQL SuperSQL SuperSQL SQL [1] [2] SQL SELECT GENERATE <media> <TFE> GENER- AT DEIM Forum 2017 E3-1 SuperSQL 223 8522 3 14 1 E-mail: {tabata,goto}@db.ics.keio.ac.jp, toyama@ics.keio.ac.jp,,,, SuperSQL SuperSQL, SuperSQL. SuperSQL 1. SuperSQL, Cross table, SQL,. 1 1 2 4. 1 SuperSQL

More information

% 95% 2002, 2004, Dunkel 1986, p.100 1

% 95% 2002, 2004, Dunkel 1986, p.100 1 Blended Learning 要 旨 / Moodle Blended Learning Moodle キーワード:Blended Learning Moodle 1 2008 Moodle e Blended Learning 2009.. 1994 2005 1 2 93% 95% 2002, 2004, 2011 2011 1 Dunkel 1986, p.100 1 Blended Learning

More information

JMP V4 による生存時間分析

JMP V4 による生存時間分析 V4 1 SAS 2000.11.18 4 ( ) (Survival Time) 1 (Event) Start of Study Start of Observation Died Died Died Lost End Time Censor Died Died Censor Died Time Start of Study End Start of Observation Censor

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

SCM (v0201) ( ) SCM 2 SCM 3 SCM SCM 2.1 SCM SCM SCM (1) MS-DOS (2) Microsoft(R) Windows 95 (C)Copyright Microsoft Corp

SCM (v0201) ( ) SCM 2 SCM 3 SCM SCM 2.1 SCM SCM SCM (1) MS-DOS (2) Microsoft(R) Windows 95 (C)Copyright Microsoft Corp SCM (v0201) ( ) 14 4 20 1 SCM 2 SCM 3 SCM 4 5 2 SCM 2.1 SCM SCM 2 1 2 SCM (1) MS-DOS (2) Microsoft(R) Windows 95 (C)Copyright Microsoft Corp 1981-1996. 1 (3) C:\WINDOWS>cd.. C:\>cd scm C:\SCM> C:\SCM>

More information

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that use microcontrollers (MCUs)

More information

Microsoft PowerPoint - SASユーザ総会2016_MRCT_送付用.pptx

Microsoft PowerPoint - SASユーザ総会2016_MRCT_送付用.pptx Multi Regional Clinical Trial の生存時間解析における地域ごとのイベント発現数の予測 淀康秀 1 浜田知久馬 2 ( 1 大日本住友製薬株式会社 2 東京理科大学 ) The prediction of the number of survival event occurrence by region in Multi-Regional Clinical Trial Yasuhide

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

VENTANA ALK D5F3 Rabbit Monoclonal Antibody OptiView ALK D5F3

VENTANA ALK D5F3 Rabbit Monoclonal Antibody OptiView ALK D5F3 VENTANA ALK D5F3 Rabbit Monoclonal Antibody OptiView ALK D5F3 2 OptiView ALK D5F3 11 10 79.3%31% 18% 80 85NSCLC 40% 1,2 1 1018 ALK ALK 2 ALK 3 5% ALK EML4 EML4-ALK Coild-Coil ALK ALK 3,4,5 2 6 EGFR 50%

More information

Vol. 42 No. SIG 8(TOD 10) July HTML 100 Development of Authoring and Delivery System for Synchronized Contents and Experiment on High Spe

Vol. 42 No. SIG 8(TOD 10) July HTML 100 Development of Authoring and Delivery System for Synchronized Contents and Experiment on High Spe Vol. 42 No. SIG 8(TOD 10) July 2001 1 2 3 4 HTML 100 Development of Authoring and Delivery System for Synchronized Contents and Experiment on High Speed Networks Yutaka Kidawara, 1 Tomoaki Kawaguchi, 2

More information

untitled

untitled 1) American College of Surgeons:Advanced Trauma Life Support Course Manual. American College of Surgeons 1997;103-112 24 2) American Society of Anesthesiologists Task Force:Practice guideline for blood

More information

fiš„v5.dvi

fiš„v5.dvi (2001) 49 2 293 303 VRML 1 2 3 2001 4 12 2001 10 16 Web Java VRML (Virtual Reality Modeling Language) VRML Web VRML VRML VRML VRML Web VRML VRML, 3D 1. WWW (World Wide Web) WWW Mittag (2000) Web CGI Java

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

untitled

untitled 1 4 4 6 8 10 30 13 14 16 16 17 18 19 19 96 21 23 24 3 27 27 4 27 128 24 4 1 50 by ( 30 30 200 30 30 24 4 TOP 10 2012 8 22 3 1 7 1,000 100 30 26 3 140 21 60 98 88,000 96 3 5 29 300 21 21 11 21

More information

Proc luaを初めて使ってみた -SASでの処理を条件に応じて変える- 淺井友紀 ( エイツーヘルスケア株式会社 ) I tried PROC LUA for the first time Tomoki Asai A2 Healthcare Corporation

Proc luaを初めて使ってみた -SASでの処理を条件に応じて変える- 淺井友紀 ( エイツーヘルスケア株式会社 ) I tried PROC LUA for the first time Tomoki Asai A2 Healthcare Corporation Proc luaを初めて使ってみた -SASでの処理を条件に応じて変える- 淺井友紀 ( エイツーヘルスケア株式会社 ) I tried PROC LUA for the first time Tomoki Asai A2 Healthcare Corporation 要旨 : 実行されるコードを分岐 繰り返すためには SAS マクロが用いられてきた 本発表では SAS マクロではなく Proc Lua

More information

9.プレゼン資料(小泉)R1

9.プレゼン資料(小泉)R1 1 Me-DigIT 2 TRO, TMECH Interesting Readings IJMRCAS, TUFFC The Most 3., etc.. etc.. etc. 4 TRO09 5 J TRO09 The Most Interesting Readings J http://www.learner.org/interactives/renaissance/printing.html

More information

報告書

報告書 1 2 3 4 5 6 7 or 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 2.65 2.45 2.31 2.30 2.29 1.95 1.79 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 60 55 60 75 25 23 6064 65 60 1015

More information

EQUIUM EQUIUM S5010 1 1 1 2 3 4 2 1 2 3 2 3 1 2 3 4 5 6 7 8 4 1 2 3 5 1 2 1 2 3 4 5 6 7 6 1 3 7 1 2 3 4 5 6 7 8 9 10 11 1 2 3 4 4 5 6 7 8 1 1 2 3 4 10 1 11 12 1 13 14 1 15 1 16 1 1 17 1 2 18 3 1 4 5 19

More information

1 138

1 138 5 1 2 3 4 5 6 7 8 1 138 BIOS Setup Utility MainAdvancedSecurityPowerExit Setup Warning Item Specific Help Setting items on this menu to incorrect values may cause your system to malfunction. Select 'Yes'

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

2016 Institute of Statistical Research

2016 Institute of Statistical Research 2016 Institute of Statistical Research 2016 Institute of Statistical Research 2016 Institute of Statistical Research 2016 Institute of Statistical Research 2016 Institute of Statistical Research 2016 Institute

More information

Unknown

Unknown Journal of Breast and Thyroid Sonology Journal of Breast and Thyroid Sonology Vol.2, No.3 July 2013 Report The 30 th Meeting of Japan Association of Breast and Thyroid Sonology... 1 Department of Organ

More information

第62巻 第1号 平成24年4月/石こうを用いた木材ペレット

第62巻 第1号 平成24年4月/石こうを用いた木材ペレット Bulletin of Japan Association for Fire Science and Engineering Vol. 62. No. 1 (2012) Development of Two-Dimensional Simple Simulation Model and Evaluation of Discharge Ability for Water Discharge of Firefighting

More information

2 33,**. + : +/* /++** +/* /++** +/* /++** /** /** F+ +*** F+ +*** / 1*42.,43 /14+,*42 /, , 134,.,43 / 0-41,*42.4, -/41,*43,34,,+4. +

2 33,**. + : +/* /++** +/* /++** +/* /++** /** /** F+ +*** F+ +*** / 1*42.,43 /14+,*42 /, , 134,.,43 / 0-41,*42.4, -/41,*43,34,,+4. + 1 BSE *,**+ 3 BSE,**- +23,2 + +,3 3+,**, * 2 33,**. + : +/* /++** +/* /++** +/* /++** /** /** F+ +*** F+ +*** / 1*42.,43 /14+,*42 /,341 24-14+ 24- +-4, 134,.,43 / 0-41,*42.4, -/41,*43,34,,+4. +/4../42,240

More information

1 I EViews View Proc Freeze

1 I EViews View Proc Freeze EViews 2017 9 6 1 I EViews 4 1 5 2 10 3 13 4 16 4.1 View.......................................... 17 4.2 Proc.......................................... 22 4.3 Freeze & Name....................................

More information

fiš„v3.dvi

fiš„v3.dvi (2001) 49 2 261 275 Web 1 1 2001 2 21 2001 4 26 Windows OS Web Windows OS, DELPHI, 1. Windows OS. DELPHI Web DELPHI ALGOL PASCAL VISUAL BASIC C++ JAVA DELPHI Windows OS Linux OS KyLix Mac OS (ver 10) JAVA

More information

第57巻2号/投稿規定・目次・表2・奥付・背

第57巻2号/投稿規定・目次・表2・奥付・背 Feature articlesdiet in a society with a growing elderly population and a low birth rate Original The problems of breastfeeding Kazuhisa Maeda, Ryuji Mitani, Satoko Endo, Yoshika Saijo, and Toshihiro

More information

*1 * Wilcoxon 2 2 t t t t d t M t N t M t n t N t n t N t d t N t t at ri

*1 * Wilcoxon 2 2 t t t t d t M t N t M t n t N t n t N t d t N t t at ri Wilcoxon H23 BioS 1 Wilcoxon 2 2.1 1 2 1 0 1 1 5 0 1 2 7 0 1 3 8 1 1 4 12 0 2 5 2 0 2 6 3 1 2 7 4 1 2 8 10 0 Wilcoxon 2.2 S 1 t S 2 t Wilcoxon H 0 H 1 H 0 : S 1 t S 2 t H 1 : S 1 t S 2 t 1 *1 *2 2.3 2.3.1

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

untitled

untitled 2303 16 2 9 1 14 5 31 (423) 1 (4), (6) C55H84ClN17O21S3 HCl (BLM-A2) 1487.47 11 2 1 4 104 2 14 5 31 [ ] ( ) ( ) 1. 15mg 30mg( ) 5 20mL 1 5mg( ) 2. 3 15mg 30mg( ) 5mL 1mg( ) 1mL 3. 5mg 15mg( ) 4. 1 2 1

More information

橡表紙参照.PDF

橡表紙参照.PDF CIRJE-J-58 X-12-ARIMA 2000 : 2001 6 How to use X-12-ARIMA2000 when you must: A Case Study of Hojinkigyo-Tokei Naoto Kunitomo Faculty of Economics, The University of Tokyo Abstract: We illustrate how to

More information

Phase II clinical trials for patients with cancer

Phase II clinical trials for patients with cancer II II I 1 I III 14 20 14 20 14 0.05 14 20 1 10 25 20-80 100-200 95 CI (π B π A ) 1.96 [π A (1 π A )/n A + π B (1 π B )/n B ] π A = probability of response rate by treatment A π B = probability of response

More information

2. Eades 1) Kamada-Kawai 7) Fruchterman 2) 6) ACE 8) HDE 9) Kruskal MDS 13) 11) Kruskal AGI Active Graph Interface 3) Kruskal 5) Kruskal 4) 3. Kruskal

2. Eades 1) Kamada-Kawai 7) Fruchterman 2) 6) ACE 8) HDE 9) Kruskal MDS 13) 11) Kruskal AGI Active Graph Interface 3) Kruskal 5) Kruskal 4) 3. Kruskal 1 2 3 A projection-based method for interactive 3D visualization of complex graphs Masanori Takami, 1 Hiroshi Hosobe 2 and Ken Wakita 3 Proposed is a new interaction technique to manipulate graph layouts

More information

CHEMOTHERAPY FEB Table 1. Activity of cefpirome and others against clinical isolates

CHEMOTHERAPY FEB Table 1. Activity of cefpirome and others against clinical isolates VOL.39 S-1 CHEMOTHERAPY FEB. 1981 Table 1. Activity of cefpirome and others against clinical isolates VOL.39 S-1 CHEMOTHERAPY FEB. 1991 72 M, 55.5 kg 66 F, 53 kg Chronic bronchitis Bronchopneumonia Peak

More information

スライド 1

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

More information

RTM RTM Risk terrain terrain RTM RTM 48

RTM RTM Risk terrain terrain RTM RTM 48 Risk Terrain Model I Risk Terrain Model RTM,,, 47 RTM RTM Risk terrain terrain RTM RTM 48 II, RTM CSV,,, RTM Caplan and Kennedy RTM Risk Terrain Modeling Diagnostics RTMDx RTMDx RTMDx III 49 - SNS 50 0

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

表 参照文献 ( 文献 ). 185, Expert Nurse. 1211, suppl, , CNS 2000, , , , 4

表 参照文献 ( 文献 ). 185, Expert Nurse. 1211, suppl, , CNS 2000, , , , 4 研究報告 がん看護専門看護師のコンサルテーション * についての概念分析 要旨 Walker Avant2005 CNS Key words はじめに 1996 2012 3 10 795 Certified Nurse SpecialistCNSCNS 327 1 CNS 2 CNS 3 4 5 6 CNS CNS 方法 Walker Avant 7 2012 8 1 2013 2 27 連絡先

More information

スライド 1

スライド 1 Hadoop と SAS との連携テクニック 小林泉 SAS Institute Japan 株式会社 ビジネス推進本部アナリティクスプラットフォーム推進 Techniques in SAS on Hadoop Izumi Kobayashi Analytics Platform Practice, SAS Institute Japan 1 要旨 : ビッグデータ分析の基盤としての Hadoop

More information

Vol. 36, Special Issue, S 3 S 18 (2015) PK Phase I Introduction to Pharmacokinetic Analysis Focus on Phase I Study 1 2 Kazuro Ikawa 1 and Jun Tanaka 2

Vol. 36, Special Issue, S 3 S 18 (2015) PK Phase I Introduction to Pharmacokinetic Analysis Focus on Phase I Study 1 2 Kazuro Ikawa 1 and Jun Tanaka 2 Vol. 36, Special Issue, S 3 S 18 (2015) PK Phase I Introduction to Pharmacokinetic Analysis Focus on Phase I Study 1 2 Kazuro Ikawa 1 and Jun Tanaka 2 1 2 1 Department of Clinical Pharmacotherapy, Hiroshima

More information

2009年133巻3号3月号.indb

2009年133巻3号3月号.indb Folia Pharmacol. Jpn.133 1 2 Chiroscience UCB S RR-..% AA C IC C/A A/ A R- II/ III II/III Chiroscience UCB S 1 - E-mail: koji_taya@maruishi-pharm.co.jp Author: Koji Taya, Satoshi Shimizu Title: Levobupivacaine

More information

276-E12001.indd

276-E12001.indd 2012; 54 (6): 276 285 91.6% 1 1 91.6% 2 142 54 196 (1) (2) 6 (3) (4) 60 1 54.2% 91.6% 1 6,226,192 8,418,514 65,945 300,898 ROI 933% 2012; 54 (6): 276 285 doi: 10.1539/sangyoeisei.E12001 1,2) 2) 3) 3 5)

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

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part Reservdelskatalog MIKASA MVB-85 rullvibrator EPOX Maskin AB Postadress Besöksadress Telefon Fax e-post Hemsida Version Box 6060 Landsvägen 1 08-754 71 60 08-754 81 00 info@epox.se www.epox.se 1,0 192 06

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

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part Reservdelskatalog MIKASA MT65H vibratorstamp EPOX Maskin AB Postadress Besöksadress Telefon Fax e-post Hemsida Version Box 6060 Landsvägen 1 08-754 71 60 08-754 81 00 info@epox.se www.epox.se 1,0 192 06

More information

by CASIO W61CA For Those Requiring an English/Chinese Instruction

by CASIO W61CA     For Those Requiring an English/Chinese Instruction by CASIO W61CA http://www.au.kddi.com/torisetsu/index.html http://www.au.kddi.com/manual/index.html For Those Requiring an English/Chinese Instruction Manual English/Chinese Simple Manual can be read on

More information

Complex Lab – Operating Systems - Graphical Console

Complex Lab – Operating Systems - Graphical Console Complex Lab Operating Systems Graphical Console Martin Küttler Last assignment Any questions? Any bug reports, whishes, etc.? 1 / 13 We are here Pong Server Paddle Client 1 Paddle Client 2 Memory Management

More information

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part Reservdelskatalog MIKASA MVC-50 vibratorplatta EPOX Maskin AB Postadress Besöksadress Telefon Fax e-post Hemsida Version Box 6060 Landsvägen 1 08-754 71 60 08-754 81 00 info@epox.se www.epox.se 1,0 192

More information

2001 2003 2005 2006 2007 2008

2001 2003 2005 2006 2007 2008 2001 2003 2005 2006 2007 2008 60 etc. http://nosmoke.hp.infoseek.co.jp/yuugaibussitu.htm http://nosmoke.hp.infoseek.co.jp/yuugaibussitu.htm 23.5% 2.8% 2.8% 3.4% 30.3% 9.9% 11.5% 15.8% AAN 65

More information

A pp CALL College Life CD-ROM Development of CD-ROM English Teaching Materials, College Life Series, for Improving English Communica

A pp CALL College Life CD-ROM Development of CD-ROM English Teaching Materials, College Life Series, for Improving English Communica A CALL College Life CD-ROM Development of CD-ROM English Teaching Materials, College Life Series, for Improving English Communicative Skills of Japanese College Students The purpose of the present study

More information

Understanding Stem Cell Transplant 2007

Understanding Stem Cell Transplant 2007 Understanding Stem Cell Transplant IMF International Myeloma Foundation 12650 Riverside Drive, Suite 206 North Hollywood, CA 91607 USA Telephone: 800-452-CURE (2873) (USA & Canada) 818-487-7455 Fax: 818-487-7454

More information

R Commanderを用いたデータ解析

R Commanderを用いたデータ解析 1 / 82 R Commander Kengo NAGASHIMA Laboratory of Biostatistics, Department of Parmaceutical Technochemistry, Josai University 2010 1 5 R R Commander 2 / 82 R, "The Comprehensive R Archive Network (CRAN)",

More information

07_学術.indd

07_学術.indd Arts and Sciences computed radiography CRpresampled MTF Measurement of presampled MTFs with computed radiography (CR) by contrast method using smoothed square-wave. 1 16813 1, 2 1 1 1 2 Key words: contrast

More information