R int num factor character 1 2 (dichotomous variable) (trichotomous variable) 3 (nominal scale) M F 1 2 coding as.numeric() as.integer() 2

Size: px
Start display at page:

Download "R int num factor character 1 2 (dichotomous variable) (trichotomous variable) 3 (nominal scale) M F 1 2 coding as.numeric() as.integer() 2"

Transcription

1 p01.txt R p01 <- read.delim("p01.txt") str(p01) 100 pid int sex F M 2 Factor ht wt num data.frame : 100 obs. of 4 variables: $ pid: int $ sex: Factor w/ 2 levels "F","M": $ ht : num $ wt : num summary(p01) NA pid sex 100 ht 99 1 wt 98 2 pid sex ht wt Min. : 1.00 F:50 Min. :150.6 Min. : st Qu.: M:50 1st Qu.: st Qu.:58.08 Median : Median :165.0 Median :61.95 Mean : Mean :165.1 Mean : rd Qu.: rd Qu.: rd Qu.:66.40 Max. : Max. :181.3 Max. :76.60 NA s : 1.0 NA s : 2.00 p01s <- subset(p01,complete.cases(p01)) p01s str(p01s) summary(p01s) 97 1

2 R int num factor character 1 2 (dichotomous variable) (trichotomous variable) 3 (nominal scale) M F 1 2 coding as.numeric() as.integer() 2 as.ordered() 3 4 2

3 (ordinal scale) (Ord.factor) R as.ordered() ± + 3, 2, 1, 0.5, , 2, 1, 0.5, 0 as.ordered(o.blood) 3, 2, 1 15, , 1 1 5, 4, 3, 2, 1 (interval scale) / cm m 3

4 (ratio scale) 7 cm kg 8 TFR cm cm 170cm 2cm PowerPoint OpenOffice.org Impress PowerPoint 10 OpenOffice.org Draw Adobe Illustrator 4

5 (2005) (ISBN ) R pdf jpg png tiff Windows Macintosh Linux postscript 11 R source() 12 X R barplot(table(x)) M ± table(x) c() names() barplot() OpenOffice.org Draw 11 table() 12 source(" R Console URL R Editor 5

6 it02-3.r ob <- c(4,1,2,12,97) names(ob) <- c("+++","++","+"," ","-") barplot(ob,ylim=c(0,100),main=" \n ") 2 barplot() it02-4.r ob <- c(4,1,2,12,97) names(ob) <- c("+++","++","+"," ","-") ii <- barplot(matrix(ob,nrow(ob)),beside=f,ylim=c(0,120),main=" ") oc <- ob for (i in 1:length(ob)) { oc[i] <- sum(ob[1:i])-ob[i]/2 } text(ii,oc,paste(names(ob))) ± ± 7 50 R 6

7 it02-5.r obm <- c(0,0,1,5,47) obf <- c(4,1,1,7,50) obx <- cbind(obm,obf) rownames(obx) <- c("+++","++","+"," ","-") colnames(obx) <- c(" "," ") ii <- barplot(obx,beside=f,ylim=c(0,70),main=" ") oc <- obx for (i in 1:length(obx[,1])) { oc[i,1] <- sum(obx[1:i,1])-obx[i,1]/2 } for (i in 1:length(obx[,2])) { oc[i,2] <- sum(obx[1:i,2])-obx[i,2]/2 } text(ii[1],oc[,1],paste(rownames(obx))) text(ii[2],oc[,2],paste(rownames(obx))) 100% R 2 (%) 4 horiz=t it02-6.r ob <- c(4,1,2,12,97) obp <- ob/sum(ob)*100 names(obp) <- c("+++","++","+"," ","-") ii <- barplot(matrix(obp,nrow(obp)),horiz=t,beside=f,xlim=c(0,100), xlab="(%)",main=" ") oc <- obp for (i in 1:length(obp)) { oc[i] <- sum(obp[1:i])-obp[i]/2 } text(oc,ii,paste(names(obp))) 7

8 barplot() dotchart() it02-7.r obm <- c(0,0,1,5,47) obf <- c(4,1,1,7,50) obx <- cbind(obm,obf) rownames(obx) <- c("+++","++","+"," ","-") colnames(obx) <- c(" "," ") dotchart(obx) dotchart(t(obx)) 100% 8

9 13 R pie() 14 R it02-8.r ob <- c(4,1,2,12,97) names(ob) <- c("+++","++","+"," ","-") pie(ob) Excel R hist() it02-9.r dat <- read.delim(" hist(dat$ht,main=" ") 13 Cleveland Cleveland WS (1985) The elements of graphing data. Wadsworth, Monterey, CA, USA. p.264 R help 14 R-1.5 piechart()

10 qqnorm() qqline() it02-10.r dat <- read.delim(" qqnorm(dat$ht,main=" ",ylab=" (cm)") qqline(dat$ht,lty=2) (stem and leaf plot) 5 10 R stem() dat <- read.delim(" stem(dat$ht) (box and whisker plot) (median) 1/4 (first quartile) 1/4 (third quartile) source(" stem() gstem() 10

11 R boxplot() dat <- read.delim(" boxplot(dat$ht) (stripchart) R stripchart() vert=t it02-11.r dat <- read.delim(" attach(dat) mht <- tapply(ht,sex,mean) sht <- tapply(ht,sex,sd) IS <- c(1,2)+0.15 stripchart(ht~sex,method="jitter",vert=t,ylab=" (cm)") points(is,mht,pch=18) arrows(is,mht-sht,is,mht+sht,code=3,angle=90,length=.1) detach(dat) (scatter plot) R plot() plot() pch points() symbols()

12 matplot() matpoints() pairs() text() identify() dat <- read.delim(" plot(dat$ht,dat$wt,pch=paste(dat$sex),xlab=" (cm)",ylab=" (kg)") R stars() maptools ESRI GIS Excel (wt) R A

win.metafile() emf Microsoft PowerPoint OpenOffice.org Draw 2 R CRAN R (2004) [ ](2004) (2005) The R Tips R The R Tips R 6

win.metafile() emf Microsoft PowerPoint OpenOffice.org Draw 2 R CRAN R (2004) [ ](2004) (2005) The R Tips R The R Tips R 6 R 2006 7 18-19 E-mail: nminato@med.gunma-u.ac.jp 1 R R GNU General Public License Version 2 1 GIS 2 R Fisher iris Gehan MASS Windows gehan Windows Macintosh Linux FreeBSD R CDC EPIINFO EPIINFO Windows

More information

Rによる計量分析:データ解析と可視化 - 第3回 Rの基礎とデータ操作・管理

Rによる計量分析:データ解析と可視化 - 第3回  Rの基礎とデータ操作・管理 R 3 R 2017 Email: gito@eco.u-toyama.ac.jp October 23, 2017 (Toyama/NIHU) R ( 3 ) October 23, 2017 1 / 34 Agenda 1 2 3 4 R 5 RStudio (Toyama/NIHU) R ( 3 ) October 23, 2017 2 / 34 10/30 (Mon.) 12/11 (Mon.)

More information

R による統計解析入門

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

More information

5 5.1 A B mm 0.1mm Nominal Scale 74

5 5.1 A B mm 0.1mm Nominal Scale 74 5 73 5 5.1 A B 2 1 2 1mm 0.1mm 5.1.1 Nominal Scale 74 5.2. Calc 5.1.2 Ordinal Scale (1) (2) (3) (4) (5) 5 1 5 1 5 4 5-2 -1 0 1 2 1 5 15 25 55 1 1 2 3 4 5 1 5.1.3 5.1.3 Interval Scale 100 80 20 80 100 5

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

Windows Macintosh 3 3 4 = 3 4 = 4 5 6 Windows Macintosh 7 8 9 Windows Macintosh 0 Windows Macintosh 3 4 5 Windows Macintosh Windows Macintosh 3 4 5 = Windows Macintosh 3 4 3 4 5 3 4 5 3 5 4 5 6 3 4 3 5

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

<82D282A982C1746F95F18D908F57967B95B E696E6464>

<82D282A982C1746F95F18D908F57967B95B E696E6464> 1 2 (90cm 70cm 2015) 3 (68cm 28cm 30cm 12kg 2015) (77.5 109.5cm 2015) 4 (22cm 50cm 50cm 4.6kg 2015) (45cm 62.5cm 2015) (47.4cm 62.5cm 2014) 5 (28.5cm 23.5cm) (45cm 62cm 2015) (97cm 107cm 2015) 6 7 8 9

More information

180 140 22

180 140 22 21 180 140 22 23 25 50 1 3 350 140 500cm 600 140 24 25 26 27 28 29 30 31 1/12 8.3 1/15 6.7 10 1/8 12.5 1/20 140 90 75 150 60 150 10 30 15 35 2,000 30 32 1 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 % 100 50 33.3

More information

6 12 10661 93100 227213202 222208197 85kg cm 20 64.521 106856142 2 1 4 3 9767 100 35 cm 7747 208198 90kg 23 5828 10661 93100 cm 227213202 10639 61 64.521 85kg 78kg 70kg 61 100 197204.5 cm 15 61

More information

BMIdata.txt DT DT <- read.table("bmidata.txt") DT head(dt) names(dt) str(dt)

BMIdata.txt DT DT <- read.table(bmidata.txt) DT head(dt) names(dt) str(dt) ?read.table read.table(file, header = FALSE, sep = "", quote = "\" ", dec = ".", numerals = c("allow.loss", "warn.loss", "no.loss"), row.names, col.names, as.is =!stringsasfactors, na.strings = "NA", colclasses

More information

90 27 1 29 ( ) 27 4 26 ( ) 27 4 29 ( ) 4 27 3 30 ( ) 1 30 4 27 4 8 ( ) 16 ( ) 9 P2 3 301 27 4 14 ( ) 15 ( ) 9 5 27 4 21 ( ) 4 27 4 21 ( ) 8 30 5 27 4 23 ( ) 5 10 11 12 13 4 3 4 14 27 4 23 ( 27 4 25 ( )

More information

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

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

More information

DAA09

DAA09 > summary(dat.lm1) Call: lm(formula = sales ~ price, data = dat) Residuals: Min 1Q Median 3Q Max -55.719-19.270 4.212 16.143 73.454 Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) 237.1326

More information

卒業論文

卒業論文 Y = ax 1 b1 X 2 b2...x k bk e u InY = Ina + b 1 InX 1 + b 2 InX 2 +...+ b k InX k + u X 1 Y b = ab 1 X 1 1 b 1 X 2 2...X bk k e u = b 1 (ax b1 1 X b2 2...X bk k e u ) / X 1 = b 1 Y / X 1 X 1 X 1 q YX1

More information

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

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè2²ó

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè2²ó 2 2015 4 20 1 (4/13) : ruby 2 / 49 2 ( ) : gnuplot 3 / 49 1 1 2014 6 IIJ / 4 / 49 1 ( ) / 5 / 49 ( ) 6 / 49 (summary statistics) : (mean) (median) (mode) : (range) (variance) (standard deviation) 7 / 49

More information

28 9

28 9 28 9 D3()Vol.68No.5pp.773-780 (2012) HASEGAWA Hironobu, FUJII Masaru, ARIMURA Mikiharu, TAMURA Tohru: A Basic Study on Traffic Accident Data Analysis Using Support Vector MachineJournal of the Eastern

More information

untitled

untitled 1 1 1 1 2 3 4 5 5 7 11 11 14 22 23 26 28 30 37 44 48 48 48 48 49 51 51 52 52 52 58 59 2 2 100 sample population (2) qualitative data quantitative data A 50 B 60 B A 10 1.2 ratio scale 3 15 18 3 1.2 0 interval

More information

- 1-128 - 2 -

- 1-128 - 2 - 127 - 1-128 - 2 - - 3-129 - 4 - 2-5 - 130-6 - - 7-131 - 8 - - 9-132 - 10 - 6041 3 () 1 ( ) () 6041 (1010) 1041 (192) 1941 () 2 (1) (2) (3) () 3 1 1 () 4 2 () 5 1 2 3 4 () 6 () 7-11 - 133-12 - 134 135 136

More information

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

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

More information

DAA04

DAA04 # plot(x,y, ) plot(dat$shoesize, dat$h, main="relationship b/w shoesize and height, xlab = 'shoesize, ylab='height, pch=19, col='red ) Relationship b/w shoesize and height height 150 160 170 180 21 22

More information

服用者向け_資料28_0623

服用者向け_資料28_0623 1 2 3 1. 2. 4 3. 4. 1. 5 2. 3. 4. 5. 6 6. 7. 8. 7 9. 10. 11. 8 12. 9 10 11 12 Q-1 : OC Q-2 : OC Q-3 : 21 OC 28 OC 13 Q-4 : OC Q-5 : OC Q-6 : OC 14 Q-7 : Q-8 : OC Q-9 : OC Q-10 : OC Q-11 : OC 15 Q-12 :

More information

データ分析のまとめ方

データ分析のまとめ方 R ではさまざまなデータを分析することができる R のデータセットを使う 外部ファイルを使う 作業ディレクトリの確認と変更 データの探し方 作業ディレクトリ (working directory) の確認と変更 Windows や mac では作業ディレクトリを変更できる 作業ディレクトリを自分の PC の デスクトップ に設定すると操作しやすい メニューでは : Windows の場合 : ファイル

More information

EPSON PS Tools HTMLヘルプ <Macintosh版>

EPSON PS Tools HTMLヘルプ <Macintosh版> Rev. LP-9800CPL EPSON PS Tools NPD0892 00 EPSON PS Tools... 1... 1 EPSON PS Tools... 2 EPSON PS Tools... 4... 4... 6... 7... 9... 11... 12 EPSON PS Tools EPSON PS Tools PS EPS PDF TIFF JPEG Macintosh OS

More information

Keynote 3 ユーザーズガイド

Keynote 3 ユーザーズガイド Keynote3 K AppleComputer,Inc. 2006AppleComputer,Inc.Allrightsreserved. AppleComputer,Inc. Apple Apple Computer,Inc. Apple AppleComputer,Inc. Apple 1InfiniteLoop Cupertino,CA95014-2084 U.S.A. www.apple.com

More information

統計研修R分散分析(追加).indd

統計研修R分散分析(追加).indd http://cse.niaes.affrc.go.jp/minaka/r/r-top.html > mm mm TRT DATA 1 DM1 2537 2 DM1 2069 3 DM1 2104 4 DM1 1797 5 DM2 3366 6 DM2 2591 7 DM2 2211 8

More information

2004/01/12 1 2004/01/23 2 I- - 10 2004/04/02 3-6 2004/04/03 4-1-5-1,-1-8-1,-2-2-1,-3-4-1,-3-5-1,-4-2-1, -5-4-2,-5-6-1,-6-2-1 4. _.doc 1

2004/01/12 1 2004/01/23 2 I- - 10 2004/04/02 3-6 2004/04/03 4-1-5-1,-1-8-1,-2-2-1,-3-4-1,-3-5-1,-4-2-1, -5-4-2,-5-6-1,-6-2-1 4. _.doc 1 4 2004 4 3 2004/01/12 1 2004/01/23 2 I- - 10 2004/04/02 3-6 2004/04/03 4-1-5-1,-1-8-1,-2-2-1,-3-4-1,-3-5-1,-4-2-1, -5-4-2,-5-6-1,-6-2-1 4. _.doc 1 - - I. 4 I- 4 I- 4 I- 6 I- 6 I- 7 II. 8 II- 8 II- 8 II-

More information

untitled

untitled 4 4 1 65 25 40 1987 1987 a 59 3 1987 b 4.1 62 63 65 1000 78 32 67 48 60 48 5 2 50 78 2 62 1 63 50 25 2 3 2 4.1.1 3 25 50 2 35 2 50 70 35 2 45 35 1 2 2 4.2 2 2 62 2 2 62 68 4.1.1 2 G 65 65 260 260 460 460

More information

ECCS. ECCS,. ( 2. Mac Do-file Editor. Mac Do-file Editor Windows Do-file Editor Top Do-file e

ECCS. ECCS,. (  2. Mac Do-file Editor. Mac Do-file Editor Windows Do-file Editor Top Do-file e 1 1 2015 4 6 1. ECCS. ECCS,. (https://ras.ecc.u-tokyo.ac.jp/guacamole/) 2. Mac Do-file Editor. Mac Do-file Editor Windows Do-file Editor Top Do-file editor, Do View Do-file Editor Execute(do). 3. Mac System

More information

BSE Excel

BSE Excel 200 2 200311110 BSE Excel 1 3 11 1 21 2 20 1 26 2203 2 10 1718 485 13 2 2 6 100 371 12 3 100 679 1 12 2 9 1 29 2 10 1 1-1 2 /kg 1-2 3 1-3 2 http://www.maff.go.jp/ 3 Excel 2 15 1 26 2 2 9 16 1 30 2 10 1-4

More information

2.1 R, ( ), Download R for Windows base. R ( ) R win.exe, 2.,.,.,. R > 3*5 # [1] 15 > c(19,76)+c(11,13)

2.1 R, ( ),   Download R for Windows base. R ( ) R win.exe, 2.,.,.,. R > 3*5 # [1] 15 > c(19,76)+c(11,13) 3 ( ) R 3 1 61, 2016/4/7( ), 4/14( ), 4/21( ) 1 1 2 1 2.1 R, ( )................ 2 2.2 ggm............................ 3 2.3,................ 4 2.4...................................... 6 2.5 1 ( )....................

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

Excel97関数編

Excel97関数編 Excel97 SUM Microsoft Excel 97... 1... 1... 1... 2... 3... 3... 4... 5... 6... 6... 7 SUM... 8... 11 Microsoft Excel 97 AVERAGE MIN MAX SUM IF 2 RANK TODAY ROUND COUNT INT VLOOKUP 1/15 Excel A B C A B

More information

橡ファミリー企業の分析020806

橡ファミリー企業の分析020806 2002 8 6 1 700 OB 2000 700 ( 40 ) 82 5 613 2 700 5,000 2 1,000 700 3 87 4,542 2,533 (82 5 ) 700 OB 405 ( ) 2,500 ( ) (660 40 ) 4 82 5 700 82 5 613 5 30 30 30 30 6 (2001 ) ( ) 1,174 1,023 113 1,136 100

More information

4 5 Y40 706050 70 14 29 C 8 A 2 M 5 E 11 W D 2 60 24 40 C 8 A 3 M 14 E 7 W 3 D 4 Y 50 34 99 C 16 A 15 M 17 E 17 W 12 D 12 Y 6 K 4 11 3 14 21 3 23 22 20 12 17 10 5 15 5 21 3 42 11 8 OB 62 42 104 261

More information

1

1 ...1...37 1 HTML4.01 Transitional Frameset DOCTYPE 5.1.a 2 Windows Shift_JIS Linux Unix EUC jp meta 5.1.a 3 5.1.a JIS cm cc kg alt 4 5.4.a 5.4.a 5 alt alt alt alt alt alt="" alt 6 5.4.b 5.4.b 7 8 5.3.a

More information

Exif Viewer, DPOF Editor 使用説明書

Exif Viewer, DPOF Editor 使用説明書 Exif Viewer DP Editor 2 3 I 4 II III 5 I 6 I 7 I 8 I 9 I 10 I 11 I 12 I 13 I 14 I 15 I 16 I 17 I 18 I 19 I 20 I 21 I 22 I 23 I 24 25 I 26 I 27 I 28 I 29 I Windows 30 I 31 I 32 I 33 I 34 35 II II 36 II

More information

untitled

untitled 1 211022 2 11150 211022384 3 1000 23% 77% 10% 10% 5% 20% 15% 40% 5% 3% 8% 16% 15% 42% 5% 6% 4 =1000 = 66 5 =1000 = 59 6 52%(42% 1000 7 56% 41% 40% 97% 3% 11%, 2% 3%, 41 7% 49% 30%, 18%, 40%, 83% =1000

More information

OpenOffice.org OOo HTML MicrosoftOffice Windows OOo OOo OpenOffice 2

OpenOffice.org OOo HTML MicrosoftOffice Windows OOo OOo OpenOffice 2 Writer C NPO NEXTDAY 1 OpenOffice.org OOo HTML MicrosoftOffice Windows OOo OOo OpenOffice 2 Ooo Microsoft Word Writer MicrosoftExcel Calc Draw Impress HTML D 3 ( ) ( ) ( ) 4 OOo.org 5 MSP HG pt pt pt 6

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

1

1 0 1 http://barrierfree.nict.go.jp/accessibility/index.html ( ) http://www.soumu.go.jp/joho_tsusin/w_access/index.html JIS X 8341-3 JISC JIS http://www.jisc 2 3 JIS X 8341-3 5.2e 1-62e) JIS X 8341-3 5.2e

More information

ISBN 0 00 00 00 0 0 ISBN 0 0 ISBN---.000-0

ISBN 0 00 00 00 0 0 ISBN 0 0 ISBN---.000-0 ISBN 0 00 00 00 0 0 ISBN 0 0 ISBN---.000-0 0 ISBN 0 00 00 00 0 0 ISBN 0 0 ISBN---.000-0 ISBN 0 00 00 00 0 0 ISBN 0 0 ISBN---.000-0 ISBN 0 00 00 00 0 0 ISBN 0 0 ISBN---.000-0 ISBN 0 00 00 00 0 0 ISBN 0

More information

(()) () ( ) () () () () () () ( ) () () () () () () () () () () () () ( ) () ( ) () () () ( ) () () () () () ( ) () () () () ( ) () ( ) () () ( ) () ( ) () () () () () () () () () () () () () () () ()

More information

1 105 2 4 50 3 ISBN 4 25 2013 1 ISBN 5 128p ISBN978-4-8340-0013-9 ISBN 2

1 105 2 4 50 3 ISBN 4 25 2013 1 ISBN 5 128p ISBN978-4-8340-0013-9 ISBN 2 1 2 39 3 14 13 16 17 36 21 30 32 1 1 105 2 4 50 3 ISBN 4 25 2013 1 ISBN 5 128p ISBN978-4-8340-0013-9 ISBN 2 39 32p ISBN978-4-251-00517-5 62p ISBN978-4-00-110579-7 1 33p ISBN978-4-477-01141-7 3 32p ISBN978-4-591-01270-3

More information

0 00 000 000 ISBN 0 0 0 ISBN 0 0 0 ISBN---.00-

0 00 000 000 ISBN 0 0 0 ISBN 0 0 0 ISBN---.00- 0 0 0 --- -0--0-- 00 0 00-0 0 0 0 0 000-00- 0 00 000 000 ISBN 0 0 0 ISBN 0 0 0 ISBN---.00- 0 00 000 000 ISBN 0 0 0 ISBN 0 0 0 ISBN---.00- ISBN 0 0 0 ISBN 0 0 0 0 00 000 000 ISBN---.00- 0 00 000 000 ISBN

More information

496

496 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 ISBN4-258-17041-0

More information

() () () () ( ) () () () () () () () () () () () () () () () () () () () () () () ( () () () () () () () () () () () () ) () ( ) () () ( ) () () () () () () () () () () () () () () () () () () () ()()

More information

CanoScan Toolbox 1.6 ユーザーズガイド

CanoScan Toolbox 1.6 ユーザーズガイド CanoScan Toolbox 1.6 for Macintosh CanoScan Toolbox 1 CanoScan Canon Inc. Macintosh Power Macintosh Mac OS imac Adobe Photoshop Adobe Systems Incorporated CANON INC. 2001 CanoScan Toolbox 2 CanoScan Toolbox

More information

stat-base_ppt [互換モード]

stat-base_ppt [互換モード] データ解析の基礎ーデータの分類とまとめ方ー 統計学と統計について 統計学 statistics とは何か? 髙木廣文東邦大学看護学部国際広域保健分野 統計 : 統計をとる (?) 統計学 : 統計学を使う (?) e-mail: halwin@med.toho-u.ac.jp http://homepage2.nifty.com/halwin/takagi.html 1 2 統計をとる とは? アンケート調査で学生のアルバイト実施を調べる

More information

CanoScan Toolbox

CanoScan Toolbox CanoScan Toolbox CS for Macintosh CanoScan Toolbox CS 1 CanoScan Canon Inc. Macintosh Power Macintosh Mac OS imac Adobe Adobe Photoshop Adobe Systems Incorporated Copyright CANON INC. 2000 CanoScan Toolbox

More information

Microsoft Word - ランチョンプレゼンテーション詳細.doc

Microsoft Word - ランチョンプレゼンテーション詳細.doc PS1-1-1 PS1-1-2 PS1-1-3 PS1-1-4 PS1-1-5 PS1-1-6 PS1-1-7 PS1-1-8 PS1-1-9 1 25 12:4514:18 25 12:4513:15 B PS1-1-10 PS1-2-1 PS1-2-2 PS1-2-3 PS1-2-4 PS1-2-5 PS1-2-6 25 13:1513:36 B PS1-2-7 PS1-3-1 PS1-3-2

More information

CSV PDF TIFF JPG A A

CSV PDF TIFF JPG A A GNSS G Web Web.NEXT GNSS Web CSV PDF TIFF JPG A A URL USB A PDF JPG PDF JPG TIFF TIFF IC IC PC GML GIS DVD Web Web Web. NEXT Web Web Web Web.NEXT Web http : // www. gsi. go. jp / PCOMMENT / csfeedback.

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

o 2o 3o 3 1. I o 3. 1o 2o 31. I 3o PDF Adobe Reader 4o 2 1o I 2o 3o 4o 5o 6o 7o 2197/ o 1o 1 1o

o 2o 3o 3 1. I o 3. 1o 2o 31. I 3o PDF Adobe Reader 4o 2 1o I 2o 3o 4o 5o 6o 7o 2197/ o 1o 1 1o 78 2 78... 2 22201011... 4... 9... 7... 29 1 1214 2 7 1 8 2 2 3 1 2 1o 2o 3o 3 1. I 1124 4o 3. 1o 2o 31. I 3o PDF Adobe Reader 4o 2 1o 72 1. I 2o 3o 4o 5o 6o 7o 2197/6 9. 9 8o 1o 1 1o 2o / 3o 4o 5o 6o

More information

p000表紙.eps

p000表紙.eps INDEX P1 P5 Adobe Photoshop P7 Adobe Illustrator P21 CONTENTS 1 2 3 4 5 6 CONTENTS Adobe Photoshop 7 Adobe Photoshop 8 Adobe Photoshop 9 Adobe Photoshop 10 Adobe Photoshop 11 Adobe Photoshop 12 Adobe Photoshop

More information

stat-base [互換モード]

stat-base [互換モード] データ解析の基礎ーデータの分類とまとめ方ー 統計学と統計について 統計学 statistics とは何か? 高木廣文東邦大学看護学部国際保健看護学研究室 統計 : 統計をとる (?) 統計学 : 統計学を使う (?) e-mail: halwin@med.toho-u.ac.jp http://homepage2.nifty.com/halwin/takagi.html 1 2 統計をとる とは?

More information

DAA03

DAA03 par(mfrow=c(1,2)) # figure Dist. of Height for Female Participants Dist. of Height for Male Participants Density 0.00 0.02 0.04 0.06 0.08 Density 0.00 0.02 0.04 0.06 0.08 140 150 160 170 180 190 Height

More information

125 2 P 1st washout 2 PB P mg/dL nd washout 2 P 5.5mg/dL< mg/dL <2.5mg/dL P P 2 D D 3 Ca 10

125 2 P 1st washout 2 PB P mg/dL nd washout 2 P 5.5mg/dL< mg/dL <2.5mg/dL P P 2 D D 3 Ca 10 . (1) 125 1 125 Renagel PB-94 P intact-pth P 1 b c a b 1 18 2 3 3 3 1 P 4 D 1 5 6 7 2 1HIV 2 3 4 5Hb 8.0g/dL ALT 48IU/L 6 7 PB-94 440mg 403mg 1-196 125 2 P 1st washout 2 PB-94 1 2 4 4 P 2.5 5.5mg/dL 1

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

Adobe Bridge Bridge Bridge Bridge P10 Bridge Finder 2

Adobe Bridge Bridge Bridge Bridge P10 Bridge Finder 2 Adobe InDesign InDesign PDF Flash Web CD DVD Adobe Campus Day Adobe Campus Day Adobe Campus Day 1 Adobe Bridge Bridge Bridge Bridge P10 Bridge Finder 2 InDesign InDesign... Web............ 3 POINT InDesign

More information

★20052G1.doc

★20052G1.doc Office I Office Application I: Word Processor Windows IME Word web 2002() FOM Programming C C C CQ Operating Systems I Windows, Linux OS I Linux OS Linux Linux vi X-Window i-node Linux/UNIX ISBN4-7973-2742-1

More information

5 LATEX 2ε 2010

5 LATEX 2ε 2010 2010-11-27 15:30 16:00 TEX 5 LATEX 2ε 2010 1986 Lisp-Stat 1996 ptex 1987 ASCII TEX 1990 ptex 1993 JIS X 4051 1994 ptex JIS 1995 ptex 3.0 platex 2ε 2000 jsarticle 2008 ε-ptex e-ptex 2010 TEX Live 2010

More information

Keynote '08 ユーザーズガイド

Keynote '08 ユーザーズガイド Keynote 08 KAppleInc. 2008AppleInc.Allrightsreserved. Apple Apple AppleInc. Apple Apple Apple 1InfiniteLoop Cupertino,CA95014-2084 U.S.A. www.apple.com 163-1480 3 20 2 www.apple.com/jp Apple Apple AppleWorks

More information

家庭系パソコンの回収再資源化にかかる論点

家庭系パソコンの回収再資源化にかかる論点 1 134 1212 134 2 1 137 1212 (1) 12 12,102 40.2 4,865 2-1 12 21,497 2-2 50.1 2-3 1 kg 2 12 2-1 13 12% 2-1 (2) 2-2 4 4 7 2-3 4 (3) 13.8 2-4 46 10 80 3 3 4 3 2-5, 2-6 13 9 2-7 18 2 2 8 5,000 30 25% 25 2 2

More information

untitled

untitled Microsoft Windows2000/XP Internet ExplorerAdobe Acrobat CECTRUST 1-1. ID...1 1-2....1 1-3. CECTRUST...2 1-4. CECTRUST...3 2-1....1 2-2. Acrobat...4 2-3. Acrobat...12 3-1....1 3-2....3 3-3....9 4-1....1

More information

技能継承に関するアンケートの結果概要

技能継承に関するアンケートの結果概要 I 1 1 1 1 1 1 2 1 3 1 II 2 1 2 2 2 3 2007 2 4 3 III 4 1 4 4 5 6 2 7 7 8 9 3 10 _10 11 _12 _13 _14 15 4 2007 16 2007 16 17 2007 18 5 19 19 I 2007 1 2005 6 21 8 3 3000 2 292 292 9.7 3 100 1 II 1 86 2 OJT

More information

DNS

DNS 先端メディアゼミナール Ⅱ 菊池浩明 1 章データマイニングとは FMS セミナー Ⅱ(2 年次春学期 ) 春 データマイニング入門 (2012 年春 ) 豊田秀樹 ( 心理学者 ) 輪講 ( 担当者が調べて発表. 質疑応答 ) 身近なデータで例題が豊富 統計解析オープンソース R データマイニングと情報検索 情報検索 Information Retrieval 文書集合から適切な文書を探すこと データマイニング

More information

R EZR 2013 11 5 *1 1 R 2 1.1 R [2013 11 5 ]................................ 2 1.2 R................................................ 3 1.3 Rgui......................................... 3 1.4 EZR...................................................

More information

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

More information

untitled

untitled i ii (1) (1) (2) (1) (3) (1) (1) (2) (1) (3) (1) (1) (2) (1) (3) (2) (3) (1) (2) (3) (1) (1) (1) (1) (2) (1) (3) (1) (2) (1) (3) (1) (1) (1) (2) (1) (3) (1) (1) (2) (1) (3)

More information

23 15961615 1659 1657 14 1701 1711 1715 11 15 22 15 35 18 22 35 23 17 17 106 1.25 21 27 12 17 420,845 23 32 58.7 32 17 11.4 71.3 17.3 32 13.3 66.4 20.3 17 10,657 k 23 20 12 17 23 17 490,708 420,845 23

More information

平成18年度「商品先物取引に関する実態調査」報告書

平成18年度「商品先物取引に関する実態調査」報告書 ... 1.... 5-1.... 6-2.... 9-3.... 10-4.... 12-5.... 13-6.... 15-7.... 16-8.... 17-9.... 20-10.... 22-11.... 24-12.... 27-13... 29-14.... 32-15... 37-16.... 39-17.... 41-18... 43-19... 45.... 49-1... 50-2...

More information

9 10 14 5 15 4 19 11 21 4 23 3 2012 24 11 24 5 24 6 27 2 447 52 395 27 2 1 2 3 4 5 6 7 8 9 10 11 12 (1) (2) (3) (4) 13 14 15 16 17 18 () 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

More information

20090419-03t-a-PPT

20090419-03t-a-PPT 5 5.1 PowerPoint MagicPoint PowerPoint 5.2 5W1H 7 8 1 15 25 PowerPoint PowerPoint PowerPoint PowerPoint PowerPoint PowerPoint 5.3 (1) PowerPoint PowerPoint PowerPoint PowerPoint PowerPoint 5-1 5-1 command

More information