The BGLR (Bayesian Generalized Linear Regression) R- Package. Gustavo de los Campos, Amit Pataki & Paulino Pérez. (August- 2013)

Size: px
Start display at page:

Download "The BGLR (Bayesian Generalized Linear Regression) R- Package. Gustavo de los Campos, Amit Pataki & Paulino Pérez. (August- 2013)"

Transcription

1 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) The BGLR (Bayesan Generalzed Lnear Regresson) R- Package By Gustavo de los Campos, Amt Patak & Paulno Pérez (August- 03) (contact: ) Contents. Introducton.... Structure of the software Runnng BGLR Loadng the BGLR package Fttng a fxed effects model to a contnuous outcome Fttng a fxed effects model to a bnary outcome Fttng fxed effects model to a rght- censored outcome Fttng marker effects as random Extractng estmates of marker effects and predctons Predctng un- observed outcomes usng BGLR... 3

2 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR). Introducton The BLR (Bayesan Lnear Regresson, project.org/web/packages/blr/ndex.html ) package of R ( project.org) mplements several types of Bayesan regresson models, ncludng fxed effects, Bayesan Lasso (BL, Park and Casella 008) and Bayesan Rdge Regresson. BLR can only handle contnuous outcomes. We have produced a modfed (beta) verson of BLR (BGLR=Bayesan Generalzed Lnear Regresson) that extends BLR by allowng regressons for bnary and censored outcomes. Most of the nputs, processes and outputs are as n BLR. Here we focus on descrbng changes n nputs, nternal process and outputs ntroduced to handle bnary and censored outcomes. Users that are not famlar wth BLR are strongly encouraged to frst read the BLR user s manual and Pérez et al. (00). Future developments wll be released frst n the R- forge webpage forge.r- project.org/projects/bglr/ and subsequently as R- packages. Censored outcomes. In BGLR censored outcomes are dealt wth as a mssng data problem. BGLR handles three types of censorng: left, rght and nterval censored. For an nterval censored data- pont the nformaton avalable s a < y < b where: a and b are known lower and upper bounds and y s the actual phenotype whch for censored data ponts s un- observed. Rght censorng occurs when b s also unknown, therefore, the only nformaton avalable s a < y. In a tme- to- event settng ths means that we know that tme to event exceeded the tme at censorng gven by a. Left censorng occurs when a s unknown; therefore, the only nformaton avalable s: specfed wth three vectors, y = { y }, a = { a } and b = { b } { a y, b } y < b. In BGLR censored outcomes are then. The confguraton of the trplet, for un- censored, rght- censored, left- censored and nterval censored are descrbed n the table below.

3 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) a y b Un- censored NA y NA Rght Censored a NA Left Censored - NA b Interval Censored a NA b Relatve to BLR, the only modfcaton ntroduced n the Gbbs sampler requred for handlng censored data ponts consst of samplng, at each teraton of the Gbbs sampler, the censored phenotypes form the correspondng fully- condtonal denstes whch n BGLR are truncated normal denstes. Bnary outcomes are modeled usng the threshold model, or probt lnk. Here, probablty of success s p( y =) = Φ( η ) where Φ( ) s the standard normal cumulatve dstrbuton functon (also known as normal probt lnk) and η s a lnear predctor, whch can nclude fxed or random effects, handled by BGLR. In order to run a regresson for bnary outcomes, the response must be coded wth 0 s (falure) and s (success), and the argument response_type should be set to 'ordnal' (further detals are gven n the examples provded below).. Structure of the software The program s provded as an R package that can be downloaded from forge.r- project.org/r/?group_d=55. The package ncludes several datasets. Here we descrbe the wheat dataset that have been used n several publcatons. 3

4 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) The wheat dataset comprses phenotypc (Y, 4 trats), marker (X,,79 markers) and pedgree (A, a matrx contanng knshp coeffcents derved from pedgree) nformaton for 599 lnes of wheat. The data can be loaded wthn R typng lbrary(bglr) and then data(wheat). Further detals about ths data can be found n Crossa et al. (00). 3. Runnng BGLR In ths secton we ntroduce examples that llustrate the use of the BGLR package for regressons usng molecular markers and other covarates. 3.. Loadng the BGLR package Box provdes the code requred to load BGLR. Box. Loadng BGLR setwd(tempdr()) #Set workng drectory lbrary(bglr) 3.. Fttng a fxed effects model to a contnuous outcome In the followng example we llustrate how ft a fxed effects lnear model to a contnuous outcome usng BGLR (lne n Box ). The code n lnes 5-7 loads the program and the wheat dataset that contans phenotypc and genotypc nformaton of 599 pure lnes of wheat, ths dataset s also avalable wth the BLR package (de los Campos and Pérez 00). Phenotypes are smulated n lnes 0-4. The pror assgned to the resdual varance s defned n lnes 7-8 Detals about the prors used n BGLR and on how to choose hyper- parameters are explaned n Pérez et al. (00). The lnear model s ftted usng BGLR n lnes 9-. The argument y n BGLR s used to provde phenotypes, for contnuous outcomes ths must be a numerc vector and a lst wth predctors whose effects wll be consdered as fxed. In addton to 4

5 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) phenotypes, we ndcate the number of teratons of the Gbbs sampler (6000) and the number that we want to dscard as burn- n (000 n the example). For comparson we nclude n lne 4 code that fts the same lnear model va ordnary least squares usng the lm() functon. Results from both BGLR and lm are dsplayed n Fgure, the code used to produce ths fgure s gven n lnes 7-8 of Box. Box. Fttng a fxed effects model to a contnuous outcome rm(lst=ls()) setwd(tempdr()) #loads BGLR & Data lbrary(bglr) data(wheat) X<-wheat.X #smulaton of data X<-X[,:4] N<-nrow(X) b<-c(-,,-,) error<-rnorm(n) y<-as.vector(x%*%b+ error) #fts model usng BGLR DF<-5 S<-var(y)/*(DF-) ETA<-lst(lst(X=X,model='FIXED')) fm<-bglr(y=y,eta=eta,niter=6000,burnin=000,df0=df,s0=s) #fts the same model usng lm() fm<- lm(y~x) #compares results from BGLR() & lm() plot(fm$eta[[]]$b~fm$coeff[-],pch=9,col=,cex=.5, xlab="lm()", ylab="bglr()"); ablne(a=0,b=,lty=) 5

6 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) BGLR() lm() Fgure. Estmated effects n a lnear model for a contnuous outcome (BGLR vs lm) Fttng a fxed effects model to a bnary outcome We now turn nto an example nvolvng a bnary outcome. Usng the same smulaton used n Box, we generate a bnary outcome by dchotomzng the smulated phenotype (see lne 0 of Box 3). The model s ftted usng BGLR n lnes 3-5. For comparson, we also ft the model usng the glm() functon of R (lne 7). In BGLR we set the argument response_type="ordnal" (see lne 4) to ndcate that the response s bnary. Note that for bnary outcomes we do not have a resdual varance parameter, therefore, for ths example there s no need to provde a pror. Estmates of effects derved usng BGLR and glm are gven n Fgure. 6

7 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) Box 3. Fttng a fxed effects model to a bnary outcome rm(lst=ls()) setwd(tempdr()) #loads BGLR & Data lbrary(bglr) data(wheat) X=wheat.X #smulaton of data X<-X[,:4] N<-nrow(X) b<-c(-,,-,) error<-rnorm(n) y<-as.vector(x%*%b+ error) ybn<-felse(y>0,,0) #fts models ETA<-lst(lst(X=X,model='FIXED')) fm<-bglr(y=ybn,response_type='ordnal',eta=eta, niter=6000,burnin=000) fm<- glm(ybn~x,famly=bnomal(lnk='probt')) plot(fm$eta[[]]$b~fm$coeff[-],pch=9,col=,cex=.5, xlab="glm()", ylab="bglr()") ; ablne(a=0,b=,lty=) BGLR() glm() Fgure. Estmated effects n fxed effects model for a bnary outcome (BGLR vs glm) 7

8 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) 3.4. Fttng fxed effects model to a rght- censored outcome We now llustrate how to use BGLR to ft a model to a rght- censored outcome. The code s gven n Box 4. The begnnng of the code (lnes - 7) s as n the examples ntroduced n Box ad 3. In lnes 8-4 we generate 00 rght- censored data ponts. These are defned usng the conventons explaned n Table. Subsequently, we ft the model usng BGLR() n lne 30. Relatve to un- censored outcomes (see example n Box ) the only dfference here s that the response s specfed va 3 vectors (y,a,b) whch are defned usng the conventons explaned n Table. For comparson we ft the same model usng the surverg() functon of the survval package (lnes 34-38). Fgure 3 gves estmates of effects derved from surverg()and BGLR(). BGLR() survreg() Fgure 3. Estmated effects n fxed effects model for a bnary outcome (BGLR vs survreg) 8

9 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) Box 4. Fttng a fxed effects model to a censored outcome rm(lst=ls()) setwd(tempdr()) #loadng lbrares lbrary(bglr) lbrary(survval) #loadng data ncluded n BGLR data(wheat) #smulaton of data X<-wheat.X[,:4] N<-nrow(X) b<-c(-,,-,) error<-rnorm(n) y<-as.vector(x%*%b+ error) cen<-sample(:n,sze=00) ycen<-y ycen[cen]<-na a<-rep(na,n) b<-rep(na,n) a[cen]<-y[cen]-runf(mn=0,max=,n=00) b[cen]<-inf DF<-5 S<-var(y)/*(DF-) ETA<-lst(lst(X=X,model='FIXED')) fm<-bglr(y=y,a=a,b=b,eta=eta,niter=6000,burnin=000, df0=df,s0=s) #fts the model usng survreg event<-felse(s.na(ycen),0,) tme<-felse(s.na(ycen),a,ycen) surv.object<-surv(tme=tme,event=event,type='rght') fm<-survreg(surv.object~x, dst="gaussan") plot(fm$eta[[]]$b~fm$coeff[-],pch=9,col=,cex=.5, xlab="survreg()", ylab="bglr()") ablne(a=0,b=,lty=) 9

10 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) 3.5. Fttng marker effects as random We now turn nto the problem of usng BGLR for fttng a Whole- Genome Regresson (WGR) model to contnuous, bnary or censored outcomes. In these models, the number of predctors typcally exceeds the number of phenotypes; therefore, shrnkage estmaton procedures are commonly used. BGLR offers several shrnkage (Bayesan) estmaton methods, for example: Bayesan Rdge Regresson (BRR) and the Bayesan Lasso (BL, Park and Casella 008). Here we llustrate how to ft models for contnuous, bnary and a censored outcome usng the BL. For the BL we need to provde a pror to the regularzaton parameter (λ) whch controls the extent of shrnkage of estmates of effects. A dscusson of how to choose these hyper- parameters based on pror nformaton about trat hertablty and on the number of markers nvolved s gven n Pérez et al. (00). In the example gven n Box 5 we ft the BL usng, for the 599 wheat lnes avalable n the wheat dataset,,79 markers. Lnes 4-7 gve the code requred for loadng BGLR and the wheat dataset. In lne we extract one of the four phenotypes, ths wll be used as a contnuous response. In lne 4 we extract the genotypes. Subsequently we generate (lnes 6-3) a rght- censored outcome by censorng 00 out of the 599 records. These lnes prepare the trplets (y,a,b) needed to specfy the censored outcome n BGLR. Fnally, n lne 6 we generate a bnary outcome. Lnes 8-4 are used to ft the models. As the number of markers ncluded n the model ncreases the number of teratons requred for convergence also ncreases, n the example of Box 5, and only for llustraton purposes, we use,000 teratons; however, convergence wth large- p may requre runnng much longer chans. Box 6 gves code that llustrates how to extract estmates of marker effects and predctons from the ftted model. 0

11 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) Box 5. Fttng a Whole Genome Regresson Usng the Bayesan LASSO for contnuous, censored and bnary outcomes rm(lst=ls()) setwd(tempdr()) #loadng lbrares lbrary(bglr) lbrary(survval) data(wheat) #extracts phenotypes #contnous y<-wheat.y[,] #Extract genotypes X<-wheat.X n<- length(y) #censored cen<-sample(:n,sze=00) ycen<-y ycen[cen]<-na ; a<-rep(na,n) ; b<-rep(na,n) a[cen]<-y[cen]-runf(mn=0,max=,n=00) b[cen]<-inf #bnary ybn<-felse(y>0,,0) #pror DF<-5 S<-var(y)/*(DF-) #models ETA<-lst(lst(X=X,model='BL',lambda=5,type='gamma', rate=e-4,shape=0.55)) fm<-bglr(y=y,eta=eta,niter=000,burnin=000, df0=df,s0=s) fm<-bglr(y=ycen,a=a,b=b,eta=eta,niter=000,burnin=000, df0=df,s0=s) fm3<-bglr(y=ybn,response_type='ordnal', ETA=ETA, niter=000,burnin=000)

12 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) 3.6. Extractng estmates of marker effects and predctons Box 6 llustrates how to extract: the estmated posteror means and posteror standard devatons of marker effects (see lnes 3-8) and posteror means of the lnear predctor (e.g., fm$yhat, see lne 3). For bnary and censored outcomes the lnear posteror mean of the lnear predctor consttutes an estmate of the condtonal expectaton. For bnary outcomes, BGLR uses the probt lnk; therefore an estmate of the expected value of the response, or probablty of success, can be obtaned by evaluatng the standard normal cumulatve dstrbuton functon at the posteror mean of the lnear predctor (see lne n Box 6). Box 6. Extractng and Dsplayng Estmates of Marker Effects and Predctons ##Vulcano plot (posteror SD vs estmated effects) plot(fm$eta[[]]$b~fm$eta[[]]$sd.b,col=, man='vulcano Plot (contnuous outcome)', xlab='estmated Effect',ylab='Est. Posteror SD') ##Estmated effects, contnuous versus censored plot(fm$eta[[]]$b~fm$eta[[]]$b,col=, man='estmated Effects', xlab='censored', ylab='contnuos') ##Predctons: contnuous versus censored outcome plot(fm$yhat~fm$yhat,col=, man='predctons', xlab='censored', ylab='contnuos') ##Estmated effects, contnuous versus bnary plot(fm$eta[[]]$b~fm3$eta[[]]$b,col=, man='estmated Effects', xlab='bnary', ylab='contnuos') ##Predctons: contnuous versus bnary outcome plot(fm$yhat~pnorm(fm3$yhat),col=, man='predctons', xlab='bnary (probablty)', ylab='contnuos')

13 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) 3.7. Predctng un- observed outcomes usng BGLR We close ths note by llustratng how to use BGLR for the predcton of yet- to- be observed phenotypes. In prncple there are at least two ways of carryng out ths task. One possblty s to partton the data (both predctors and response) nto tranng and a valdaton dataset, the tranng dataset s provded to BGLR to derve parameter estmates, whch could then be used to predct observatons n the valdatng dataset. An alternatve s to provde the whole data to BGLR wth the response values of the observatons n the valdaton set replaced wth mssng values. BGLR wll return predctons for these data- ponts as well and such predctons can be used to assess the ablty of the model to predct un- observed phenotypes. In the case of contnuous and bnary outcomes ths s done smply by settng the entres of y correspondng to the valdaton dataset equal to NA (see example below); for censored outcomes, the trplets correspondng to the valdaton set needs to be set to (a =-, y =NA, b = ) so that these are completely un- nformatve. Predcton of bnary outcomes. The example n Box 7 llustrates how to derve predctons for a valdaton dataset n case of a bnary outcome. The code n lnes - 9 loads lbrares and the wheat dataset and defnes the pror densty and sets predctors. These lnes are essentally as n our prevous examples. In lnes - 4 we generate a valdaton set by settng 00 randomly chosen entres of the response to mssng values. The model s ftted n lnes 6-7. Lnes 9-30 llustrate how to calculate mean- squared predcton error and area under the curve. 3

14 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) Box 7. Fttng a Whole Genome Regresson Usng the Bayesan LASSO for contnuous, rm(lst=ls()) setwd(tempdr()) #loadng lbrares lbrary(bglr) lbrary(proc) data(wheat) #extracts phenotypes #contnous y<-wheat.y[,] X<-wheat.X #bnary ybn<-felse(y>0,,0) censored and bnary outcomes ETA<-lst(lst(X=X,model='BL',lambda=5,type='gamma', rate=e-4,shape=0.55)) #generates testng dataset tst<-sample(:599,sze=00,replace=false) yna<-ybn yna[tst]<-na fm<-bglr(y=yna,response_type='ordnal', ETA=ETA, niter=000,burnin=000) mean((ybn[tst]-pnorm(fm$yhat[tst]))^) # mean-sq. error auc(response=ybn[tst],predctor=fm$yhat[tst]) Predcton of censored outcomes. The example n Box 8 llustrates how to derve predctons for a valdaton dataset n case of a censored outcome. Lnes - 4 are used to load lbrares and the dataset and to defne the pror. These are essentally as n our prevous examples. In lnes 3-36 we generate a valdaton set usng 00 lnes randomly chosen among the un- censored observatons. Note that n order for these phenotypes to be un- nformatve we need to set the trplets of the lnes n the valdaton dataset to (a =-, y =NA, b = ). The model s ftted n lnes and predcton accuracy s quantfed n lne 4. 4

15 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) Box 8. Fttng a Whole Genome Regresson Usng the Bayesan LASSO for contnuous, censored and bnary outcomes rm(lst=ls()) setwd(tempdr()) #loadng lbrares lbrary(bglr) lbrary(survval) data(wheat) #extracts phenotypes #contnous y<-wheat.y[,] #Extract genotypes X<-wheat.X n<- length(y) #censored cen<-sample(:n,sze=00) ycen<-y ycen[cen]<-na ; a<-rep(na,n) ; b<-rep(na,n) a[cen]<-y[cen]-runf(mn=0,max=,n=00) b[cen]<-inf #Set pror and predctors DF<-5 S<-var(y)/*(DF-) ETA<-lst(lst(X=X,model='BL',lambda=5,type='gamma', rate=e-4,shape=0.55)) #generates testng dataset tst<-sample(whch(!s.na(ycen)),sze=00,replace=false) yna<-ycen ; yna[tst]<-na ana<-a ; ana[tst]<- -Inf bna<-b ; bna[tst]<- Inf #model fm<-bglr(y=ycen,a=a,b=b,eta=eta,niter=000,burnin=000, df0=df,s0=s) cor(fm$yhat[tst],ycen[tst]) 5

16 Bostatstcs Department Bayesan Generalzed Lnear Regresson (BGLR) Acknowledgments. Fnancal support from NIH P30 Admnstratve supplement (UAB- Nutrton Obesty Research Center) and NIH grants R0GM09-0 and R0GM A are gratefully acknowledged. References de los Campos, G., and P. Pérez. 00. BLR: Bayesan Lnear Regresson. R Package Verson.. project.org/web/packages/blr/ndex.html. Crossa, J., G. de los Campos, P. Perez, D. Ganola, J. Burgueño, J. L Araus, D. Makumb, et al. 00. Predcton of Genetc Values of Quanttatve Trats n Plant Breedng Usng Pedgree and Molecular Markers. Genetcs 86 (): Park, T., and G. Casella The Bayesan Lasso. Journal of the Amercan Statstcal Assocaton 03 (48): Pérez, Paulno, Gustavo de los Campos, José Crossa, and Danel Ganola. 00. Genomc- Enabled Predcton Based on Molecular Markers and Pedgree Usng the Bayesan Lnear Regresson Package n R. The Plant Genome Journal 3 (): do:0.3835/plantgenome

Life Tables (Times) Summary. Sample StatFolio: lifetable times.sgp

Life Tables (Times) Summary. Sample StatFolio: lifetable times.sgp Lfe Tables (Tmes) Summary... 1 Data Input... 2 Analyss Summary... 3 Survval Functon... 5 Log Survval Functon... 6 Cumulatve Hazard Functon... 7 Percentles... 7 Group Comparsons... 8 Summary The Lfe Tables

More information

y and the total sum of

y and the total sum of Lnear regresson Testng for non-lnearty In analytcal chemstry, lnear regresson s commonly used n the constructon of calbraton functons requred for analytcal technques such as gas chromatography, atomc absorpton

More information

Exercises (Part 4) Introduction to R UCLA/CCPR. John Fox, February 2005

Exercises (Part 4) Introduction to R UCLA/CCPR. John Fox, February 2005 Exercses (Part 4) Introducton to R UCLA/CCPR John Fox, February 2005 1. A challengng problem: Iterated weghted least squares (IWLS) s a standard method of fttng generalzed lnear models to data. As descrbed

More information

Support Vector Machines

Support Vector Machines /9/207 MIST.6060 Busness Intellgence and Data Mnng What are Support Vector Machnes? Support Vector Machnes Support Vector Machnes (SVMs) are supervsed learnng technques that analyze data and recognze patterns.

More information

Simulation: Solving Dynamic Models ABE 5646 Week 11 Chapter 2, Spring 2010

Simulation: Solving Dynamic Models ABE 5646 Week 11 Chapter 2, Spring 2010 Smulaton: Solvng Dynamc Models ABE 5646 Week Chapter 2, Sprng 200 Week Descrpton Readng Materal Mar 5- Mar 9 Evaluatng [Crop] Models Comparng a model wth data - Graphcal, errors - Measures of agreement

More information

A Semi-parametric Regression Model to Estimate Variability of NO 2

A Semi-parametric Regression Model to Estimate Variability of NO 2 Envronment and Polluton; Vol. 2, No. 1; 2013 ISSN 1927-0909 E-ISSN 1927-0917 Publshed by Canadan Center of Scence and Educaton A Sem-parametrc Regresson Model to Estmate Varablty of NO 2 Meczysław Szyszkowcz

More information

NAG Fortran Library Chapter Introduction. G10 Smoothing in Statistics

NAG Fortran Library Chapter Introduction. G10 Smoothing in Statistics Introducton G10 NAG Fortran Lbrary Chapter Introducton G10 Smoothng n Statstcs Contents 1 Scope of the Chapter... 2 2 Background to the Problems... 2 2.1 Smoothng Methods... 2 2.2 Smoothng Splnes and Regresson

More information

Synthesizer 1.0. User s Guide. A Varying Coefficient Meta. nalytic Tool. Z. Krizan Employing Microsoft Excel 2007

Synthesizer 1.0. User s Guide. A Varying Coefficient Meta. nalytic Tool. Z. Krizan Employing Microsoft Excel 2007 Syntheszer 1.0 A Varyng Coeffcent Meta Meta-Analytc nalytc Tool Employng Mcrosoft Excel 007.38.17.5 User s Gude Z. Krzan 009 Table of Contents 1. Introducton and Acknowledgments 3. Operatonal Functons

More information

ECONOMICS 452* -- Stata 11 Tutorial 6. Stata 11 Tutorial 6. TOPIC: Representing Multi-Category Categorical Variables with Dummy Variable Regressors

ECONOMICS 452* -- Stata 11 Tutorial 6. Stata 11 Tutorial 6. TOPIC: Representing Multi-Category Categorical Variables with Dummy Variable Regressors ECONOMICS * -- Stata 11 Tutoral Stata 11 Tutoral TOPIC: Representng Mult-Category Categorcal Varables wth Dummy Varable Regressors DATA: wage1_econ.dta (a Stata-format dataset) TASKS: Stata 11 Tutoral

More information

Data Mining: Model Evaluation

Data Mining: Model Evaluation Data Mnng: Model Evaluaton Aprl 16, 2013 1 Issues: Evaluatng Classfcaton Methods Accurac classfer accurac: predctng class label predctor accurac: guessng value of predcted attrbutes Speed tme to construct

More information

S1 Note. Basis functions.

S1 Note. Basis functions. S1 Note. Bass functons. Contents Types of bass functons...1 The Fourer bass...2 B-splne bass...3 Power and type I error rates wth dfferent numbers of bass functons...4 Table S1. Smulaton results of type

More information

ECONOMICS 452* -- Stata 12 Tutorial 6. Stata 12 Tutorial 6. TOPIC: Representing Multi-Category Categorical Variables with Dummy Variable Regressors

ECONOMICS 452* -- Stata 12 Tutorial 6. Stata 12 Tutorial 6. TOPIC: Representing Multi-Category Categorical Variables with Dummy Variable Regressors ECONOMICS 45* -- Stata 1 Tutoral 6 Stata 1 Tutoral 6 TOPIC: Representng Mult-Category Categorcal Varables wth Dummy Varable Regressors DATA: wage1_econ45.dta (a Stata-format dataset) TASKS: Stata 1 Tutoral

More information

Comparison Between Linear and Non-parametric Regression Models for Genome-Enabled Prediction in Wheat

Comparison Between Linear and Non-parametric Regression Models for Genome-Enabled Prediction in Wheat GENOMIC SELECTION Comparson Between Lnear and Non-parametrc Regresson Models for Genome-Enabled Predcton n Wheat Paulno Pérez-Rodríguez,*,1 Danel Ganola, Juan Manuel González-Camacho,* José Crossa, Yann

More information

X- Chart Using ANOM Approach

X- Chart Using ANOM Approach ISSN 1684-8403 Journal of Statstcs Volume 17, 010, pp. 3-3 Abstract X- Chart Usng ANOM Approach Gullapall Chakravarth 1 and Chaluvad Venkateswara Rao Control lmts for ndvdual measurements (X) chart are

More information

Mixed Linear System Estimation and Identification

Mixed Linear System Estimation and Identification 48th IEEE Conference on Decson and Control, Shangha, Chna, December 2009 Mxed Lnear System Estmaton and Identfcaton A. Zymns S. Boyd D. Gornevsky Abstract We consder a mxed lnear system model, wth both

More information

Three supervised learning methods on pen digits character recognition dataset

Three supervised learning methods on pen digits character recognition dataset Three supervsed learnng methods on pen dgts character recognton dataset Chrs Flezach Department of Computer Scence and Engneerng Unversty of Calforna, San Dego San Dego, CA 92093 cflezac@cs.ucsd.edu Satoru

More information

Parameter estimation for incomplete bivariate longitudinal data in clinical trials

Parameter estimation for incomplete bivariate longitudinal data in clinical trials Parameter estmaton for ncomplete bvarate longtudnal data n clncal trals Naum M. Khutoryansky Novo Nordsk Pharmaceutcals, Inc., Prnceton, NJ ABSTRACT Bvarate models are useful when analyzng longtudnal data

More information

CS 534: Computer Vision Model Fitting

CS 534: Computer Vision Model Fitting CS 534: Computer Vson Model Fttng Sprng 004 Ahmed Elgammal Dept of Computer Scence CS 534 Model Fttng - 1 Outlnes Model fttng s mportant Least-squares fttng Maxmum lkelhood estmaton MAP estmaton Robust

More information

Biostatistics 615/815

Biostatistics 615/815 The E-M Algorthm Bostatstcs 615/815 Lecture 17 Last Lecture: The Smplex Method General method for optmzaton Makes few assumptons about functon Crawls towards mnmum Some recommendatons Multple startng ponts

More information

A Robust Method for Estimating the Fundamental Matrix

A Robust Method for Estimating the Fundamental Matrix Proc. VIIth Dgtal Image Computng: Technques and Applcatons, Sun C., Talbot H., Ourseln S. and Adraansen T. (Eds.), 0- Dec. 003, Sydney A Robust Method for Estmatng the Fundamental Matrx C.L. Feng and Y.S.

More information

Help for Time-Resolved Analysis TRI2 version 2.4 P Barber,

Help for Time-Resolved Analysis TRI2 version 2.4 P Barber, Help for Tme-Resolved Analyss TRI2 verson 2.4 P Barber, 22.01.10 Introducton Tme-resolved Analyss (TRA) becomes avalable under the processng menu once you have loaded and selected an mage that contans

More information

TN348: Openlab Module - Colocalization

TN348: Openlab Module - Colocalization TN348: Openlab Module - Colocalzaton Topc The Colocalzaton module provdes the faclty to vsualze and quantfy colocalzaton between pars of mages. The Colocalzaton wndow contans a prevew of the two mages

More information

Analysis of Continuous Beams in General

Analysis of Continuous Beams in General Analyss of Contnuous Beams n General Contnuous beams consdered here are prsmatc, rgdly connected to each beam segment and supported at varous ponts along the beam. onts are selected at ponts of support,

More information

An Entropy-Based Approach to Integrated Information Needs Assessment

An Entropy-Based Approach to Integrated Information Needs Assessment Dstrbuton Statement A: Approved for publc release; dstrbuton s unlmted. An Entropy-Based Approach to ntegrated nformaton Needs Assessment June 8, 2004 Wllam J. Farrell Lockheed Martn Advanced Technology

More information

Smoothing Spline ANOVA for variable screening

Smoothing Spline ANOVA for variable screening Smoothng Splne ANOVA for varable screenng a useful tool for metamodels tranng and mult-objectve optmzaton L. Rcco, E. Rgon, A. Turco Outlne RSM Introducton Possble couplng Test case MOO MOO wth Game Theory

More information

Feature Reduction and Selection

Feature Reduction and Selection Feature Reducton and Selecton Dr. Shuang LIANG School of Software Engneerng TongJ Unversty Fall, 2012 Today s Topcs Introducton Problems of Dmensonalty Feature Reducton Statstc methods Prncpal Components

More information

Fusion Performance Model for Distributed Tracking and Classification

Fusion Performance Model for Distributed Tracking and Classification Fuson Performance Model for Dstrbuted rackng and Classfcaton K.C. Chang and Yng Song Dept. of SEOR, School of I&E George Mason Unversty FAIRFAX, VA kchang@gmu.edu Martn Lggns Verdan Systems Dvson, Inc.

More information

Six-Band HDTV Camera System for Color Reproduction Based on Spectral Information

Six-Band HDTV Camera System for Color Reproduction Based on Spectral Information IS&T's 23 PICS Conference Sx-Band HDTV Camera System for Color Reproducton Based on Spectral Informaton Kenro Ohsawa )4), Hroyuk Fukuda ), Takeyuk Ajto 2),Yasuhro Komya 2), Hdeak Hanesh 3), Masahro Yamaguch

More information

Nonlinear Mixed Model Methods and Prediction Procedures Demonstrated on a Volume-Age Model

Nonlinear Mixed Model Methods and Prediction Procedures Demonstrated on a Volume-Age Model Nonlnear Mxed Model Methods and Predcton Procedures Demonstrated on a Volume-Age Model Prepared by: Shongmng Huang, Shawn X. Meng, Yuqng Yang August, 3 Techncal Report Pub. No.: T/6(3) ISBN No. 978--46-755-3

More information

Hermite Splines in Lie Groups as Products of Geodesics

Hermite Splines in Lie Groups as Products of Geodesics Hermte Splnes n Le Groups as Products of Geodescs Ethan Eade Updated May 28, 2017 1 Introducton 1.1 Goal Ths document defnes a curve n the Le group G parametrzed by tme and by structural parameters n the

More information

Bayesian Approach for Fatigue Life Prediction from Field Inspection

Bayesian Approach for Fatigue Life Prediction from Field Inspection Bayesan Approach for Fatgue Lfe Predcton from Feld Inspecton Dawn An, and Jooho Cho School of Aerospace & Mechancal Engneerng, Korea Aerospace Unversty skal@nate.com, jhcho@kau.ac.kr Nam H. Km, and Srram

More information

Lobachevsky State University of Nizhni Novgorod. Polyhedron. Quick Start Guide

Lobachevsky State University of Nizhni Novgorod. Polyhedron. Quick Start Guide Lobachevsky State Unversty of Nzhn Novgorod Polyhedron Quck Start Gude Nzhn Novgorod 2016 Contents Specfcaton of Polyhedron software... 3 Theoretcal background... 4 1. Interface of Polyhedron... 6 1.1.

More information

Wishing you all a Total Quality New Year!

Wishing you all a Total Quality New Year! Total Qualty Management and Sx Sgma Post Graduate Program 214-15 Sesson 4 Vnay Kumar Kalakband Assstant Professor Operatons & Systems Area 1 Wshng you all a Total Qualty New Year! Hope you acheve Sx sgma

More information

Helsinki University Of Technology, Systems Analysis Laboratory Mat Independent research projects in applied mathematics (3 cr)

Helsinki University Of Technology, Systems Analysis Laboratory Mat Independent research projects in applied mathematics (3 cr) Helsnk Unversty Of Technology, Systems Analyss Laboratory Mat-2.08 Independent research projects n appled mathematcs (3 cr) "! #$&% Antt Laukkanen 506 R ajlaukka@cc.hut.f 2 Introducton...3 2 Multattrbute

More information

Compiler Design. Spring Register Allocation. Sample Exercises and Solutions. Prof. Pedro C. Diniz

Compiler Design. Spring Register Allocation. Sample Exercises and Solutions. Prof. Pedro C. Diniz Compler Desgn Sprng 2014 Regster Allocaton Sample Exercses and Solutons Prof. Pedro C. Dnz USC / Informaton Scences Insttute 4676 Admralty Way, Sute 1001 Marna del Rey, Calforna 90292 pedro@s.edu Regster

More information

Programming in Fortran 90 : 2017/2018

Programming in Fortran 90 : 2017/2018 Programmng n Fortran 90 : 2017/2018 Programmng n Fortran 90 : 2017/2018 Exercse 1 : Evaluaton of functon dependng on nput Wrte a program who evaluate the functon f (x,y) for any two user specfed values

More information

Solutions to Programming Assignment Five Interpolation and Numerical Differentiation

Solutions to Programming Assignment Five Interpolation and Numerical Differentiation College of Engneerng and Coputer Scence Mechancal Engneerng Departent Mechancal Engneerng 309 Nuercal Analyss of Engneerng Systes Sprng 04 Nuber: 537 Instructor: Larry Caretto Solutons to Prograng Assgnent

More information

FITTING A CHI -square CURVE TO AN OBSERVI:D FREQUENCY DISTRIBUTION By w. T Federer BU-14-M Jan. 17, 1951

FITTING A CHI -square CURVE TO AN OBSERVI:D FREQUENCY DISTRIBUTION By w. T Federer BU-14-M Jan. 17, 1951 FTTNG A CH -square CURVE TO AN OBSERV:D FREQUENCY DSTRBUTON By w. T Federer BU-4-M Jan. 7, 95 Textbooks n statstcs (for example, Johnson, Statstcal Methods n Research; Love, Applcaton of Statstcal Methods

More information

Wavefront Reconstructor

Wavefront Reconstructor A Dstrbuted Smplex B-Splne Based Wavefront Reconstructor Coen de Vsser and Mchel Verhaegen 14-12-201212 2012 Delft Unversty of Technology Contents Introducton Wavefront reconstructon usng Smplex B-Splnes

More information

Some Advanced SPC Tools 1. Cumulative Sum Control (Cusum) Chart For the data shown in Table 9-1, the x chart can be generated.

Some Advanced SPC Tools 1. Cumulative Sum Control (Cusum) Chart For the data shown in Table 9-1, the x chart can be generated. Some Advanced SP Tools 1. umulatve Sum ontrol (usum) hart For the data shown n Table 9-1, the x chart can be generated. However, the shft taken place at sample #21 s not apparent. 92 For ths set samples,

More information

Mathematics 256 a course in differential equations for engineering students

Mathematics 256 a course in differential equations for engineering students Mathematcs 56 a course n dfferental equatons for engneerng students Chapter 5. More effcent methods of numercal soluton Euler s method s qute neffcent. Because the error s essentally proportonal to the

More information

RStudio for Data Management,

RStudio for Data Management, K23166 2015/1/9 17:35 page 4 #4 Usng R and RStudo for Data Management, Statstcal Analyss and Graphcs Second Edton Ncholas J. Horton Department of Mathematcs and Statstcs Amherst College Massachusetts,

More information

Empirical Distributions of Parameter Estimates. in Binary Logistic Regression Using Bootstrap

Empirical Distributions of Parameter Estimates. in Binary Logistic Regression Using Bootstrap Int. Journal of Math. Analyss, Vol. 8, 4, no. 5, 7-7 HIKARI Ltd, www.m-hkar.com http://dx.do.org/.988/jma.4.494 Emprcal Dstrbutons of Parameter Estmates n Bnary Logstc Regresson Usng Bootstrap Anwar Ftranto*

More information

A Simple and Efficient Goal Programming Model for Computing of Fuzzy Linear Regression Parameters with Considering Outliers

A Simple and Efficient Goal Programming Model for Computing of Fuzzy Linear Regression Parameters with Considering Outliers 62626262621 Journal of Uncertan Systems Vol.5, No.1, pp.62-71, 211 Onlne at: www.us.org.u A Smple and Effcent Goal Programmng Model for Computng of Fuzzy Lnear Regresson Parameters wth Consderng Outlers

More information

Some variations on the standard theoretical models for the h-index: A comparative analysis. C. Malesios 1

Some variations on the standard theoretical models for the h-index: A comparative analysis. C. Malesios 1 *********Ths s the fnal draft for the paper submtted to the Journal of the Assocaton for Informaton Scence and Technology. For the offcal verson please refer to DOI: 10.1002/as.23410********* Some varatons

More information

Classification / Regression Support Vector Machines

Classification / Regression Support Vector Machines Classfcaton / Regresson Support Vector Machnes Jeff Howbert Introducton to Machne Learnng Wnter 04 Topcs SVM classfers for lnearly separable classes SVM classfers for non-lnearly separable classes SVM

More information

Adjusted Estimates for Time-to-Event Endpoints

Adjusted Estimates for Time-to-Event Endpoints Adjusted Estmates for Tme-to-Event Endponts Barry E. Storer 1, Ted A. Gooley 1, Mchael P. Jones 2 1 Fred Hutchnson Cancer Research Center 2 Unversty of Iowa Phone: 206-667-6151 FAX: 206-667-6358 bstorer@fhcrc.org

More information

A Binarization Algorithm specialized on Document Images and Photos

A Binarization Algorithm specialized on Document Images and Photos A Bnarzaton Algorthm specalzed on Document mages and Photos Ergna Kavalleratou Dept. of nformaton and Communcaton Systems Engneerng Unversty of the Aegean kavalleratou@aegean.gr Abstract n ths paper, a

More information

Improved Methods for Lithography Model Calibration

Improved Methods for Lithography Model Calibration Improved Methods for Lthography Model Calbraton Chrs Mack www.lthoguru.com, Austn, Texas Abstract Lthography models, ncludng rgorous frst prncple models and fast approxmate models used for OPC, requre

More information

Estimating Regression Coefficients using Weighted Bootstrap with Probability

Estimating Regression Coefficients using Weighted Bootstrap with Probability Norazan M R, Habshah Md, A H M R Imon Estmatng Regresson Coeffcents usng Weghted Bootstrap wth Probablty NORAZAN M R, HABSHAH MIDI AND A H M R IMON Faculty of Computer and Mathematcal Scences, Unversty

More information

Lecture 4: Principal components

Lecture 4: Principal components /3/6 Lecture 4: Prncpal components 3..6 Multvarate lnear regresson MLR s optmal for the estmaton data...but poor for handlng collnear data Covarance matrx s not nvertble (large condton number) Robustness

More information

2x x l. Module 3: Element Properties Lecture 4: Lagrange and Serendipity Elements

2x x l. Module 3: Element Properties Lecture 4: Lagrange and Serendipity Elements Module 3: Element Propertes Lecture : Lagrange and Serendpty Elements 5 In last lecture note, the nterpolaton functons are derved on the bass of assumed polynomal from Pascal s trangle for the fled varable.

More information

arxiv: v1 [stat.co] 16 Jul 2015

arxiv: v1 [stat.co] 16 Jul 2015 Effcent mplementaton of leave-one-out cross-valdaton and WAIC for evaluatng ftted Bayesan models Ak Vehtar Andrew Gelman Jonah Gabry 15 July 215 Abstract arxv:157.4544v1 [stat.co] 16 Jul 215 Leave-one-out

More information

Classifier Selection Based on Data Complexity Measures *

Classifier Selection Based on Data Complexity Measures * Classfer Selecton Based on Data Complexty Measures * Edth Hernández-Reyes, J.A. Carrasco-Ochoa, and J.Fco. Martínez-Trndad Natonal Insttute for Astrophyscs, Optcs and Electroncs, Lus Enrque Erro No.1 Sta.

More information

APPLICATION OF MULTIVARIATE LOSS FUNCTION FOR ASSESSMENT OF THE QUALITY OF TECHNOLOGICAL PROCESS MANAGEMENT

APPLICATION OF MULTIVARIATE LOSS FUNCTION FOR ASSESSMENT OF THE QUALITY OF TECHNOLOGICAL PROCESS MANAGEMENT 3. - 5. 5., Brno, Czech Republc, EU APPLICATION OF MULTIVARIATE LOSS FUNCTION FOR ASSESSMENT OF THE QUALITY OF TECHNOLOGICAL PROCESS MANAGEMENT Abstract Josef TOŠENOVSKÝ ) Lenka MONSPORTOVÁ ) Flp TOŠENOVSKÝ

More information

5/20/ Advanced Analysis Methodologies

5/20/ Advanced Analysis Methodologies 5/20/205- Advanced Analyss Methodologes Advanced Methodologes Censored Data Convertng to contnuous data often presents analyss challenges For eample, f we use detecton range, how do we account for nondetects

More information

Why visualisation? IRDS: Visualization. Univariate data. Visualisations that we won t be interested in. Graphics provide little additional information

Why visualisation? IRDS: Visualization. Univariate data. Visualisations that we won t be interested in. Graphics provide little additional information Why vsualsaton? IRDS: Vsualzaton Charles Sutton Unversty of Ednburgh Goal : Have a data set that I want to understand. Ths s called exploratory data analyss. Today s lecture. Goal II: Want to dsplay data

More information

SVM-based Learning for Multiple Model Estimation

SVM-based Learning for Multiple Model Estimation SVM-based Learnng for Multple Model Estmaton Vladmr Cherkassky and Yunqan Ma Department of Electrcal and Computer Engneerng Unversty of Mnnesota Mnneapols, MN 55455 {cherkass,myq}@ece.umn.edu Abstract:

More information

The Codesign Challenge

The Codesign Challenge ECE 4530 Codesgn Challenge Fall 2007 Hardware/Software Codesgn The Codesgn Challenge Objectves In the codesgn challenge, your task s to accelerate a gven software reference mplementaton as fast as possble.

More information

The Man-hour Estimation Models & Its Comparison of Interim Products Assembly for Shipbuilding

The Man-hour Estimation Models & Its Comparison of Interim Products Assembly for Shipbuilding Internatonal Journal of Operatons Research Internatonal Journal of Operatons Research Vol., No., 9 4 (005) The Man-hour Estmaton Models & Its Comparson of Interm Products Assembly for Shpbuldng Bn Lu and

More information

USING LINEAR REGRESSION FOR THE AUTOMATION OF SUPERVISED CLASSIFICATION IN MULTITEMPORAL IMAGES

USING LINEAR REGRESSION FOR THE AUTOMATION OF SUPERVISED CLASSIFICATION IN MULTITEMPORAL IMAGES USING LINEAR REGRESSION FOR THE AUTOMATION OF SUPERVISED CLASSIFICATION IN MULTITEMPORAL IMAGES 1 Fetosa, R.Q., 2 Merelles, M.S.P., 3 Blos, P. A. 1,3 Dept. of Electrcal Engneerng ; Catholc Unversty of

More information

Performance Evaluation of Information Retrieval Systems

Performance Evaluation of Information Retrieval Systems Why System Evaluaton? Performance Evaluaton of Informaton Retreval Systems Many sldes n ths secton are adapted from Prof. Joydeep Ghosh (UT ECE) who n turn adapted them from Prof. Dk Lee (Unv. of Scence

More information

A Fast Visual Tracking Algorithm Based on Circle Pixels Matching

A Fast Visual Tracking Algorithm Based on Circle Pixels Matching A Fast Vsual Trackng Algorthm Based on Crcle Pxels Matchng Zhqang Hou hou_zhq@sohu.com Chongzhao Han czhan@mal.xjtu.edu.cn Ln Zheng Abstract: A fast vsual trackng algorthm based on crcle pxels matchng

More information

This module is part of the. Memobust Handbook. on Methodology of Modern Business Statistics

This module is part of the. Memobust Handbook. on Methodology of Modern Business Statistics Ths module s part of the Memobust Handbook on Methodology of Modern Busness Statstcs 26 March 2014 Theme: Donor Imputaton Contents General secton... 3 1. Summary... 3 2. General descrpton... 3 2.1 Introducton

More information

Problem Set 3 Solutions

Problem Set 3 Solutions Introducton to Algorthms October 4, 2002 Massachusetts Insttute of Technology 6046J/18410J Professors Erk Demane and Shaf Goldwasser Handout 14 Problem Set 3 Solutons (Exercses were not to be turned n,

More information

Analysis of Malaysian Wind Direction Data Using ORIANA

Analysis of Malaysian Wind Direction Data Using ORIANA Modern Appled Scence March, 29 Analyss of Malaysan Wnd Drecton Data Usng ORIANA St Fatmah Hassan (Correspondng author) Centre for Foundaton Studes n Scence Unversty of Malaya, 63 Kuala Lumpur, Malaysa

More information

A MOVING MESH APPROACH FOR SIMULATION BUDGET ALLOCATION ON CONTINUOUS DOMAINS

A MOVING MESH APPROACH FOR SIMULATION BUDGET ALLOCATION ON CONTINUOUS DOMAINS Proceedngs of the Wnter Smulaton Conference M E Kuhl, N M Steger, F B Armstrong, and J A Jones, eds A MOVING MESH APPROACH FOR SIMULATION BUDGET ALLOCATION ON CONTINUOUS DOMAINS Mark W Brantley Chun-Hung

More information

Anonymisation of Public Use Data Sets

Anonymisation of Public Use Data Sets Anonymsaton of Publc Use Data Sets Methods for Reducng Dsclosure Rsk and the Analyss of Perturbed Data Harvey Goldsten Unversty of Brstol and Unversty College London and Natale Shlomo Unversty of Manchester

More information

Chapter 6 Programmng the fnte element method Inow turn to the man subject of ths book: The mplementaton of the fnte element algorthm n computer programs. In order to make my dscusson as straghtforward

More information

FEATURE EXTRACTION. Dr. K.Vijayarekha. Associate Dean School of Electrical and Electronics Engineering SASTRA University, Thanjavur

FEATURE EXTRACTION. Dr. K.Vijayarekha. Associate Dean School of Electrical and Electronics Engineering SASTRA University, Thanjavur FEATURE EXTRACTION Dr. K.Vjayarekha Assocate Dean School of Electrcal and Electroncs Engneerng SASTRA Unversty, Thanjavur613 41 Jont Intatve of IITs and IISc Funded by MHRD Page 1 of 8 Table of Contents

More information

Intelligent Information Acquisition for Improved Clustering

Intelligent Information Acquisition for Improved Clustering Intellgent Informaton Acquston for Improved Clusterng Duy Vu Unversty of Texas at Austn duyvu@cs.utexas.edu Mkhal Blenko Mcrosoft Research mblenko@mcrosoft.com Prem Melvlle IBM T.J. Watson Research Center

More information

NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS

NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS ARPN Journal of Engneerng and Appled Scences 006-017 Asan Research Publshng Network (ARPN). All rghts reserved. NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS Igor Grgoryev, Svetlana

More information

Lecture 5: Probability Distributions. Random Variables

Lecture 5: Probability Distributions. Random Variables Lecture 5: Probablty Dstrbutons Random Varables Probablty Dstrbutons Dscrete Random Varables Contnuous Random Varables and ther Dstrbutons Dscrete Jont Dstrbutons Contnuous Jont Dstrbutons Independent

More information

Classifying Acoustic Transient Signals Using Artificial Intelligence

Classifying Acoustic Transient Signals Using Artificial Intelligence Classfyng Acoustc Transent Sgnals Usng Artfcal Intellgence Steve Sutton, Unversty of North Carolna At Wlmngton (suttons@charter.net) Greg Huff, Unversty of North Carolna At Wlmngton (jgh7476@uncwl.edu)

More information

Review of approximation techniques

Review of approximation techniques CHAPTER 2 Revew of appromaton technques 2. Introducton Optmzaton problems n engneerng desgn are characterzed by the followng assocated features: the objectve functon and constrants are mplct functons evaluated

More information

APPLICATION OF PREDICTION-BASED PARTICLE FILTERS FOR TELEOPERATIONS OVER THE INTERNET

APPLICATION OF PREDICTION-BASED PARTICLE FILTERS FOR TELEOPERATIONS OVER THE INTERNET APPLICATION OF PREDICTION-BASED PARTICLE FILTERS FOR TELEOPERATIONS OVER THE INTERNET Jae-young Lee, Shahram Payandeh, and Ljljana Trajovć School of Engneerng Scence Smon Fraser Unversty 8888 Unversty

More information

A Similarity-Based Prognostics Approach for Remaining Useful Life Estimation of Engineered Systems

A Similarity-Based Prognostics Approach for Remaining Useful Life Estimation of Engineered Systems 2008 INTERNATIONAL CONFERENCE ON PROGNOSTICS AND HEALTH MANAGEMENT A Smlarty-Based Prognostcs Approach for Remanng Useful Lfe Estmaton of Engneered Systems Tany Wang, Janbo Yu, Davd Segel, and Jay Lee

More information

Stitching of off-axis sub-aperture null measurements of an aspheric surface

Stitching of off-axis sub-aperture null measurements of an aspheric surface Sttchng of off-axs sub-aperture null measurements of an aspherc surface Chunyu Zhao* and James H. Burge College of optcal Scences The Unversty of Arzona 1630 E. Unversty Blvd. Tucson, AZ 85721 ABSTRACT

More information

An Optimal Algorithm for Prufer Codes *

An Optimal Algorithm for Prufer Codes * J. Software Engneerng & Applcatons, 2009, 2: 111-115 do:10.4236/jsea.2009.22016 Publshed Onlne July 2009 (www.scrp.org/journal/jsea) An Optmal Algorthm for Prufer Codes * Xaodong Wang 1, 2, Le Wang 3,

More information

A Fast Content-Based Multimedia Retrieval Technique Using Compressed Data

A Fast Content-Based Multimedia Retrieval Technique Using Compressed Data A Fast Content-Based Multmeda Retreval Technque Usng Compressed Data Borko Furht and Pornvt Saksobhavvat NSF Multmeda Laboratory Florda Atlantc Unversty, Boca Raton, Florda 3343 ABSTRACT In ths paper,

More information

Signature and Lexicon Pruning Techniques

Signature and Lexicon Pruning Techniques Sgnature and Lexcon Prunng Technques Srnvas Palla, Hansheng Le, Venu Govndaraju Centre for Unfed Bometrcs and Sensors Unversty at Buffalo {spalla2, hle, govnd}@cedar.buffalo.edu Abstract Handwrtten word

More information

Content Based Image Retrieval Using 2-D Discrete Wavelet with Texture Feature with Different Classifiers

Content Based Image Retrieval Using 2-D Discrete Wavelet with Texture Feature with Different Classifiers IOSR Journal of Electroncs and Communcaton Engneerng (IOSR-JECE) e-issn: 78-834,p- ISSN: 78-8735.Volume 9, Issue, Ver. IV (Mar - Apr. 04), PP 0-07 Content Based Image Retreval Usng -D Dscrete Wavelet wth

More information

APPLICATION OF PREDICTION-BASED PARTICLE FILTERS FOR TELEOPERATIONS OVER THE INTERNET

APPLICATION OF PREDICTION-BASED PARTICLE FILTERS FOR TELEOPERATIONS OVER THE INTERNET APPLICATION OF PREDICTION-BASED PARTICLE FILTERS FOR TELEOPERATIONS OVER THE INTERNET Jae-young Lee, Shahram Payandeh, and Ljljana Trajovć School of Engneerng Scence Smon Fraser Unversty 8888 Unversty

More information

Classification Based Mode Decisions for Video over Networks

Classification Based Mode Decisions for Video over Networks Classfcaton Based Mode Decsons for Vdeo over Networks Deepak S. Turaga and Tsuhan Chen Advanced Multmeda Processng Lab Tranng data for Inter-Intra Decson Inter-Intra Decson Regons pdf 6 5 6 5 Energy 4

More information

Application of Maximum Entropy Markov Models on the Protein Secondary Structure Predictions

Application of Maximum Entropy Markov Models on the Protein Secondary Structure Predictions Applcaton of Maxmum Entropy Markov Models on the Proten Secondary Structure Predctons Yohan Km Department of Chemstry and Bochemstry Unversty of Calforna, San Dego La Jolla, CA 92093 ykm@ucsd.edu Abstract

More information

EXST7034 Regression Techniques Geaghan Logistic regression Diagnostics Page 1

EXST7034 Regression Techniques Geaghan Logistic regression Diagnostics Page 1 Logstc regresson Dagnostcs Page 1 1 **********************************************************; 2 *** Logstc Regresson - Dsease outbreak example ***; 3 *** NKNW table 14.3 (Appendx C3) ***; 4 *** Study

More information

Steps for Computing the Dissimilarity, Entropy, Herfindahl-Hirschman and. Accessibility (Gravity with Competition) Indices

Steps for Computing the Dissimilarity, Entropy, Herfindahl-Hirschman and. Accessibility (Gravity with Competition) Indices Steps for Computng the Dssmlarty, Entropy, Herfndahl-Hrschman and Accessblty (Gravty wth Competton) Indces I. Dssmlarty Index Measurement: The followng formula can be used to measure the evenness between

More information

A New Approach For the Ranking of Fuzzy Sets With Different Heights

A New Approach For the Ranking of Fuzzy Sets With Different Heights New pproach For the ankng of Fuzzy Sets Wth Dfferent Heghts Pushpnder Sngh School of Mathematcs Computer pplcatons Thapar Unversty, Patala-7 00 Inda pushpndersnl@gmalcom STCT ankng of fuzzy sets plays

More information

Probability Base Classification Technique: A Preliminary Study for Two Groups

Probability Base Classification Technique: A Preliminary Study for Two Groups Mathematcal Theory and Modelng ISSN 4-5804 (Paper) ISSN 5-05 (Onlne) www.ste.org Probablty Base Classfcaton Technque: A Prelmnary Study for Two Groups Frday Znzendoff Okwonu,* Abdul Rahman Othman. Department

More information

CHAPTER 3 SEQUENTIAL MINIMAL OPTIMIZATION TRAINED SUPPORT VECTOR CLASSIFIER FOR CANCER PREDICTION

CHAPTER 3 SEQUENTIAL MINIMAL OPTIMIZATION TRAINED SUPPORT VECTOR CLASSIFIER FOR CANCER PREDICTION 48 CHAPTER 3 SEQUENTIAL MINIMAL OPTIMIZATION TRAINED SUPPORT VECTOR CLASSIFIER FOR CANCER PREDICTION 3.1 INTRODUCTION The raw mcroarray data s bascally an mage wth dfferent colors ndcatng hybrdzaton (Xue

More information

Parallel Inverse Halftoning by Look-Up Table (LUT) Partitioning

Parallel Inverse Halftoning by Look-Up Table (LUT) Partitioning Parallel Inverse Halftonng by Look-Up Table (LUT) Parttonng Umar F. Sddq and Sadq M. Sat umar@ccse.kfupm.edu.sa, sadq@kfupm.edu.sa KFUPM Box: Department of Computer Engneerng, Kng Fahd Unversty of Petroleum

More information

Machine Learning. K-means Algorithm

Machine Learning. K-means Algorithm Macne Learnng CS 6375 --- Sprng 2015 Gaussan Mture Model GMM pectaton Mamzaton M Acknowledgement: some sldes adopted from Crstoper Bsop Vncent Ng. 1 K-means Algortm Specal case of M Goal: represent a data

More information

A Post Randomization Framework for Privacy-Preserving Bayesian. Network Parameter Learning

A Post Randomization Framework for Privacy-Preserving Bayesian. Network Parameter Learning A Post Randomzaton Framework for Prvacy-Preservng Bayesan Network Parameter Learnng JIANJIE MA K.SIVAKUMAR School Electrcal Engneerng and Computer Scence, Washngton State Unversty Pullman, WA. 9964-75

More information

mquest Quickstart Version 11.0

mquest Quickstart Version 11.0 mquest Quckstart Verson 11.0 cluetec GmbH Emmy-Noether-Straße 17 76131 Karlsruhe Germany www.cluetec.de www.mquest.nfo cluetec GmbH Karlsruhe, 2016 Document verson 5 27.04.2016 16:59 > Propretary notce

More information

Random Variables and Probability Distributions

Random Variables and Probability Distributions Random Varables and Probablty Dstrbutons Some Prelmnary Informaton Scales on Measurement IE231 - Lecture Notes 5 Mar 14, 2017 Nomnal scale: These are categorcal values that has no relatonshp of order or

More information

Sorting Review. Sorting. Comparison Sorting. CSE 680 Prof. Roger Crawfis. Assumptions

Sorting Review. Sorting. Comparison Sorting. CSE 680 Prof. Roger Crawfis. Assumptions Sortng Revew Introducton to Algorthms Qucksort CSE 680 Prof. Roger Crawfs Inserton Sort T(n) = Θ(n 2 ) In-place Merge Sort T(n) = Θ(n lg(n)) Not n-place Selecton Sort (from homework) T(n) = Θ(n 2 ) In-place

More information

Learning Ensemble of Local PDM-based Regressions. Yen Le Computational Biomedicine Lab Advisor: Prof. Ioannis A. Kakadiaris

Learning Ensemble of Local PDM-based Regressions. Yen Le Computational Biomedicine Lab Advisor: Prof. Ioannis A. Kakadiaris Learnng Ensemble of Local PDM-based Regressons Yen Le Computatonal Bomedcne Lab Advsor: Prof. Ioanns A. Kakadars 1 Problem statement Fttng a statstcal shape model (PDM) for mage segmentaton Callosum segmentaton

More information

A Coding Practice for Preparing Adaptive Multistage Testing Yung-chen Hsu, GED Testing Service, LLC, Washington, DC

A Coding Practice for Preparing Adaptive Multistage Testing Yung-chen Hsu, GED Testing Service, LLC, Washington, DC SESUG 011 Paper PO-3 A Codng Practce for Preparng Adaptve Multstage Testng Yung-chen Hsu, GED Testng Servce, LLC, Washngton, DC ABSTRACT The purpose of ths paper s to present a smulaton study of a codng

More information

Modeling Local Uncertainty accounting for Uncertainty in the Data

Modeling Local Uncertainty accounting for Uncertainty in the Data Modelng Local Uncertanty accontng for Uncertanty n the Data Olena Babak and Clayton V Detsch Consder the problem of estmaton at an nsampled locaton sng srrondng samples The standard approach to ths problem

More information

ANSYS FLUENT 12.1 in Workbench User s Guide

ANSYS FLUENT 12.1 in Workbench User s Guide ANSYS FLUENT 12.1 n Workbench User s Gude October 2009 Copyrght c 2009 by ANSYS, Inc. All Rghts Reserved. No part of ths document may be reproduced or otherwse used n any form wthout express wrtten permsson

More information