The normalp Package. October 2, 2007

Size: px
Start display at page:

Download "The normalp Package. October 2, 2007"

Transcription

1 Version Date The normal Package October 2, 2007 Title Package for exonential ower distributions (EPD) Author Maintainer Deends R (>= 1.5.0) Descrition A collection of utilities refered to exonential ower distributions, also known as General Error Distribution License GPL-2 URL htt:// htt://dssm.unia.it/elio R toics documented: dnorm estimate grahn kurtosis lm aram lot.lm lot.simul.lm lot.simul.m norm qnorm qqnorm rnorm simul.lm simul.m summary.lm summary.simul.lm Index 20 1

2 2 dnorm dnorm Density function of an exonential ower distribution Descrition Density function for the exonential ower distribution with location arameter mu, scale arameter sigma and shae arameter. dnorm(x, mu=0, sigma=1, =2, log=false) x mu sigma log Vector of quantiles. Vector of location arameters. Vector of scale arameters. Shae arameter. Logical; if TRUE, the density is given as log(density). Details If mu, sigma or are not secified they assume the default values 0, 1 and 2, resectively. The exonential ower distribution has density function f(x) = 1 e x µ σ 2 (1/) Γ(1 + 1/)σ where µ is the location arameter, σ the scale arameter and the shae arameter. When = 2 the exonential ower distribution becomes the Normal Distribution, when = 1 the exonential ower distribution becomes the Lalace Distribution, when the exonential ower distribution becomes the Uniform Distribution. dnorm gives the density function of an exonential ower distribution. See Also Normal for the Normal distribution, Uniform for the Uniform distribution, and Secial for the Gamma function.

3 estimate 3 Examles ## Comute the density for a vector x with mu=0, sigma=1 and =1.5 ## At the end we have the grah of the exonential ower distribution ## density function with =1.5 x <- c(-1, 1) f <- dnorm(x, =1.5) rint(f) lot(function(x) dnorm(x, =1.5), -4, 4, main = "Exonential ower distribution density function (=1.5)", ylab="f(x)") estimate Estimation of Descrition The estimate function estimates the shae arameter from a vector of observations. estimate(x, mu, =2, method=c("inverse","direct")) x mu method Vector of observations. An estimate of the location arameter. Starting value of the shae arameter. Method used to estimate from a samle. Details The used algorithm is based on a method roosed by A.M. Mineo (1994), which uses a articular index of kurtosis, called V I Γ(1/)Γ(3/) V I =. Γ(2/) With method the user can choice between an inverse interolation (faster) or a direct solution of the equation An estimate of from a samle of observations. Vˆ Γ(1/)Γ(3/) I =. Γ(2/)

4 4 grahn References Mineo, A.M. (1994) Un nuovo metodo di stima di er una corretta valutazione dei arametri di intensità e di scala di una curva normale di ordine, Atti della XXXVII Riunione Scientifica della Società Italiana di Statistica, San Remo, Vol. 2, Examles x<-rnorm(300,mu=1,sigma=2,=4) <-estimate(x,mu=1,=2) grahn Plot of exonential ower distributions Descrition The function grahn returns on the same device, marked with different colours, from one to five exonential ower distributions. grahn(=c(1,2,3,4,5), mu=0, sigma=1, title="exonential Power Distributions") mu sigma title A vector of values. His length must be maximum five. of the location arameter. of the scale arameter. The title of the lot. Details If one or more values of are greater than or equal to 50, grahn will lot the density function of an uniform distribution. A grahic device with till five different curves. The curves have different colours and the device is comleted by a legend.

5 kurtosis 5 Examles ## Plot four different curves with =1,2,3,4 ## and 50 (it will lot an uniform distribution) grahn(c(1:4,50)) kurtosis Indices of kurtosis Descrition This function comutes the theoretical and emirical values of three indices of kurtosis. kurtosis(x = NULL,, value = c("estimate", "arameter")) x value A samle of observations. the shae arameter. If is set to estimate, evaluate the indices using an estimate of. Otherwise, if is set to arameter it uses the value secified in. It returns the vector of the three indices of kurtosis V I, β 2 and β. Giving a vector as argument, it returns the estimates of the three indices, comuted on the samle. On the other hand, giving the value of the shae arameter, it returns the theoretical indices. References Mineo, A.M. (1996) La migliore combinazione delle osservazioni: curve normali di ordine e stimatori di norma L. PhD thesis. Examles kurtosis(=2) x<-rnorm(50,mu=0,sigma=2,=1.5) kurtosis(x,=2)

6 6 lm lm Fitted linear model with exonential ower distribution errors Descrition The function lm is used to fit linear model. It can be used when the errors are distributed as an exonential ower distribution. lm(formula, data, ) formula data A symbolic descrition of the model to be fitted. An otional data frame containing the variables in the model. By default the variables are taken from the environment. The shae arameter. If secified, this function estimates the arameter by using the L norm method. Details To evaluate the coefficients of the linear model, lm uses the maximum likelihood estimators. This function can give some roblems if the number of regressors is too high. The function lm returns an object of class "lm" and "lm". The function summary rint a summary of the results. The generic accessor functions coefficients, effects, fitted.values and residuals extract various useful features of the value returned by lm. An object of class "lm" is a list containing at least the following comonents: coefficients A named vector of coefficients. residuals The residuals, that is resonses minus fitted values. fitted.values The fitted values. rank df.residual call terms kn model iter The numeric rank of the fitted linear model. The residual degrees of freedom comuted as in lm. The matched call. The terms object used. Estimate of the shae arameter comuted on residuals. A logical arameter used by summary. The model frame used. If its value is 1 we have had a difficult convergence.

7 aram 7 References Mineo, A.M. (1995) Stima dei arametri di regressione lineare semlice quando gli errori seguono una distribuzione normale di ordine ( incognito). Annali della Facoltà di Economia dell Università di Palermo (Area Statistico-Matematica), Examles e<-rnorm(n=100,mu=0,sigma=4,=3,method="d") x<-runif(100) y<-0.5+2*x+e lm(y~x) aram Estimation of location and scale arameters Descrition The function aram returns a list with five elements: arithmetic mean, M, standard deviation, S, and shae arameter, estimated on a samle. aram(x, ) x A vector of observations. If secified, the algorithm uses this value for, i.e. the algorithm does not use an estimate of.... Further arguments assed to or from other methods. The estimation of µ and is based on an iterative method. To show differences between the least squares method and the maximum likelihood method, it rints out also the mean and the standard deviation. Mean M Sd S iter Arithmetic mean. The estimated value of the location arameter. Standard deviation. The estimated value of the scale arameter. The estimated value of the shae arameter. If its value is 1, we have had roblems on convergence.

8 8 lot.lm References Mineo, A.M. (1996) La migliore combinazione delle osservazioni: curve normali di ordine e stimatori di norma L. PhD thesis. Examles x<-rnorm(1000,2,3,4.2) aram(x) lot.lm Diagnostic lots for a lm object Descrition This function roduces four lots: a lot of residuals against fitted value, a Normal Q-Q lot, an Exonential Power Distribution Q-Q lot, a Scale-Location lot, with a -root of the standardized residuals against the fitted values. ## S3 method for class 'lm': lot(x,...) x A lm object, tyically result of lm.... Further arguments assed to or from other methods. Details The standardized residuals in the Normal Q-Q lot are those of an object lm; in the Exonential Power distribution Q-Q lot and in the scale location lot the standardized residuals are comuted as (e i m )/(s ).

9 lot.simul.lm 9 Examles x<-1:20 z<-runif(20) e<-rnorm(20,mu=0,sigma=1,=3) y<-0.5+x+z+e lm.res<-lm(y~x+z) lot(lm.res) lot.simul.lm Plots of the results of a simulation lan on a linear regression model Descrition It returns the histograms of the estimates of the regression coefficients, of the scale arameter σ and of the shae arameter. ## S3 method for class 'simul.lm': lot(x,...) x A simul.lm object, tyically result of simul.lm... Further arguments assed to or from other methods The histograms of all the coefficients of the linear regression model and of the estimates of the scale arameter σ and of the structure arameter. Examles sim<-simul.lm(n=10,m=50,q=1,data=1.5,int=0,sigma=1,=3.5) lot(sim)

10 10 norm lot.simul.m Plots of the results of a simulation lan on the arameters of an exonential ower distribution Descrition It returns the histograms of the vector of means, estimates of µ, standard deviations, estimates of σ and estimates of. ## S3 method for class 'simul.m': lot(x,...) x A simul.m object, tyically result of simul.m... Further arguments assed to or from other methods The histograms of the estimates of the arameters of an exonential ower distribution. Examles ## The histograms of all the comuted estimates a<-simul.m(100,50,mu=0,sigma=1,=3) lot(a) norm Probability function of an exonential ower distribution Descrition Probability function for the exonential ower distribution with location arameter mu, scale arameter sigma and shae arameter. norm(q, mu=0, sigma=1, =2, lower.tail=true, log.r=false)

11 norm 11 q mu sigma lower.tail log.r Vector of quantiles. Vector of location arameters. Vector of scale arameters. Shae arameter. Logical; if TRUE (default), robabilities are P [X x], otherwise, P [X > x]. Logical; if TRUE, robabilities r are given as log(r). Details If mu, sigma or are not secified they assume the default values 0, 1 and 2, resectively. The exonential ower distribution has density function f(x) = 1 e x µ σ 2 (1/) Γ(1 + 1/)σ where µ is the location arameter, σ the scale arameter and the shae arameter. When = 2 the exonential ower distribution becomes the Normal Distribution, when = 1 the exonential ower distribution becomes the Lalace Distribution, when the exonential ower distribution becomes the Uniform Distribution. norm gives the robability of an exonential ower distribution. See Also Normal for the Normal distribution, Uniform for the Uniform distribution, and Secial for the Gamma function. Examles ## Comute the distribution function for a vector x with mu=0, sigma=1 and =1.5 ## At the end we have the grah of the exonential ower distribution function with =1.5. x <- c(-1, 1) r <- norm(x, =1.5) rint(r) lot(function(x) norm(x, =1.5), -4, 4, main = "Exonential Power Distribution Function (=1.5)", ylab="f(x)")

12 12 qnorm qnorm Quantiles of an exonential ower distribution Descrition Quantiles for the exonential ower distribution with location arameter mu, scale arameter sigma and shae arameter. qnorm(r, mu=0, sigma=1, =2, lower.tail=true, log.r=false) r mu sigma lower.tail log.r Vector of robabilities. Vector of location arameters. Vector of scale arameters. Shae arameter. Logical; if TRUE (default), robabilities are P [X x], otherwise, P [X > x]. Logical; if TRUE, robabilities r are given as log(r). Details If mu, sigma or are not secified they assume the default values 0, 1 and 2, resectively. The exonential ower distribution has density function f(x) = 1 e x µ σ 2 (1/) Γ(1 + 1/)σ where µ is the location arameter, σ the scale arameter and the shae arameter. When = 2 the exonential ower distribution becomes the Normal Distribution, when = 1 the exonential ower distribution becomes the Lalace Distribution, when the exonential ower distribution becomes the Uniform Distribution. qnorm gives the quantiles of an exonential ower distribution. See Also Normal for the Normal distribution, Uniform for the Uniform distribution, and Secial for the Gamma function.

13 qqnorm 13 Examles ## Comute the quantiles for a vector of robabilities x ## with mu=1, sigma=2 and =1.5 x <- 0.3 q <- qnorm(x, 1, 2, 1.5) q qqnorm Quantile-Quantile lot for an exonential ower distribution Descrition The function qqnorm roduces an exonential ower distribution Q-Q lot of the values in y. The function qqline adds a line to an exonential ower distribution Q-Q lot going through the first and the third quartile. qqnorm(y, ylim,, main, xlab, ylab,...) qqline(y, =2,...) y Vector of observations. The shae arameter. main,xlab,ylab Plot labels. ylim,... Grahical arameters Examles ## Exonential ower distribution Q-Q lot for a samle of 100 observations. e<-rnorm(100,mu=0,sigma=1,=3) qqnorm(e,=3) qqline(e,=3)

14 14 rnorm rnorm Pseudo-random numbers from an exonential ower distribution Descrition Generation of seudo-random numbers from an exonential ower distribution with location arameter mu, scale arameter sigma and shae arameter. rnorm(n, mu = 0, sigma = 1, = 2, method = c("def", "chiodi")) n mu sigma method Number of observations. Vector of location arameters. Vector of scale arameters. Shae arameter. If is set to the default method "def", it uses the method based on the transformation of a Gamma random variable. If set to "chiodi", it uses an algorithm based on a generalization of the Marsaglia formula to generate seudo-random numbers from a normal distribution. The default method "def" is faster than the "chiodi" one (this one is introduced only for "historical" uroses). Details If mu, sigma or are not secified they assume the default values 0, 1 and 2, resectively. The exonential ower distribution has density function f(x) = 1 e x µ σ 2 (1/) Γ(1 + 1/)σ where µ is the location arameter, σ the scale arameter and the shae arameter. When = 2 the exonential ower distribution becomes the Normal Distribution, when = 1 the exonential ower distribution becomes the Lalace Distribution, when the exonential ower distribution becomes the Uniform Distribution. rnorm gives a vector of n seudo-random numbers from an exonential ower distribution.

15 simul.lm 15 References Chiodi, M. (1986) Procedures for generating seudo-random numbers from a normal distribution of order (>1), Statistica Alicata, 1, Marsaglia, G. and Bray, T.A. (1964) A convenient method for generating normal variables, SIAM rev., 6, See Also Normal for the Normal distribution, Uniform for the Uniform distribution, Secial for the Gamma function and.random.seed for the random number generation. Examles ## Generate a random samle x from an exonential ower distribution ## At the end we have the histogram of x x <- rnorm(1000, 1, 2, 1.5) hist(x, main="histogram of the random samle") simul.lm Simulation lanning for a linear regression model with errors distributed as an exonential ower distribution Descrition This function erforms a Monte Carlo simulation to comare least squares estimators and Maximum Likelihood estimators for a linear regression model with errors distributed as an exonential ower distribution. The regressors are drawn from an Uniform distribution. simul.lm(n, m, q, data, int=0, sigma=1, =2, l=false) n m q data int sigma l Samle size. Number of samles. Number of regressors. A vector of coefficients. of the intercet. The scale arameter. The shae arameter. Logical. If TRUE, it evaluates the coefficients with known.

16 16 simul.m The function simul.lm returns an object of class "simul.lm". A comonent of this object is a table of means and variances of the m estimates of the regression coefficients and of the scale aramenter σ. The summary shows this table and the arguments of the simulation lan. The function lot returns the histograms of the comuted estimates. References Mineo, A.M. (1995) Stima dei arametri di regressione lineare semlice quando gli errori seguono una distribuzione normale di ordine ( incognito). Annali della Facoltà di Economia dell Università di Palermo (Area Statistico-Matematica), Examles ## Simulation of 50 samles of size 10 for a linear regression model with 1 regressor. simul.lm(10,50,1,data=1.5,int=1,sigma=1,=3,l=false) simul.m Simulation lanning for the arameters of an exonential ower distribution Descrition This function erforms a Monte Carlo simulation to comare least square estimators and Maximum Likelihood estimators for the arameters of an exonential ower distribution. For each samle, it calls the function aram, returning the arithmetic means, the max-likelihood estimates of the location arameter, the standard deviations, the max-likelihood estimates of the scale arameter and the estimates of the shae arameter. simul.m(n, m, mu=0, sigma=1, =2) n m mu sigma Samle size. Number of samles. of the location arameter. of the scale arameter. the shae arameter.

17 summary.lm 17 This function is useful to comare several kinds of estimators. It returns an object of class "simul.m", a list containing the following comonents: dat table A matrix m 5 containing the results of aram for each samle. A matrix reorting the means and the variances of the values of the five estimators. References Mineo, A.M. (1995) Stima dei arametri di intensità e di scala di una curva normale di ordine ( incognito). Annali della Facoltà di Economia dell Università di Palermo (Area Statistico- Matematica), Examles ## Simulation lan for 100 samles of size 20, with mu=0, sigma=1, =3. simul.m(20,100,mu=0,sigma=1,=3) summary.lm Summarize linear model fits with exonential ower distribution errors Descrition This function is the summary method for class "lm". This function roduces a set of results for a linear regression model. By assuming that in a linear regression model the errors are distributed as an exonential ower distribution, we can use the function lm. ## S3 method for class 'lm': summary(object,...) ## S3 method for class 'summary.lm': rint(x,...) object An object of class "lm", a result of a call to lm. x An object of class "summary.lm".... Further arguments assed to or from other methods.

18 18 summary.simul.lm The function summary returns a list of summary statistics of the fitted linear model given in lm, using the comonents (list elements) call and terms from its argument, lus Call The matched call. Residuals A summary of the vector of residuals e i. Coefficients Vector of coefficients. Estimate of An estimate of the shae arameter. Power deviation of order The ower deviation of order given by Examles x<-runif(30) e<-rnorm(30,0,3,1.25) y<-0.5+x+e L<-lm(y~x) summary(l) S = [ e ] 1 i n q where q is either the number of the estimated regression coefficients if is known, either the number of the estimated regression coefficients lus 1 if is estimated. summary.simul.lm Summarize simulation results on linear regression model Descrition This function is the summary method for class "simul.lm". This function roduces a set of results for a simulation lan for a linear regression model with errors distributed as an exonential ower distribution. ## S3 method for class 'simul.lm': summary(object,...) ## S3 method for class 'summary.simul.lm': rint(x,...)

19 summary.simul.lm 19 object x An object of class "simul.lm", a result of a call to simul.lm. An object of class "summary.simul.lm", usually a result of a call to summary.simul.lm.... Further arguments assed to or from other methods. This function returns this information: Results Table containing the simulation results. Coefficients The true values of coefficients used on the simulation model. Formula The used linear regression model. Number of samles Number of samles generated. of of the shae arameter used to draw the samles. Number of samles with roblems on convergence If is estimated, we have information on the number of samles with roblems on convergence. Examles ris<-simul.lm(100,20,2,data=c(3,2),int=0,sigma=1,=3) summary(ris)

20 Index Toic alot grahn, 4 Toic distribution dnorm, 1 norm, 10 qnorm, 12 rnorm, 14 Toic hlot lot.lm, 8 lot.simul.lm, 9 lot.simul.m, 10 qqnorm, 13 Toic regression lm, 6 simul.lm, 15 summary.lm, 17 summary.simul.lm, 18 Toic univar estimate, 3 kurtosis, 5 aram, 7 simul.m, 16.Random.seed, 15 call, 18 class, 6 lot.lm, 8 lot.simul.lm, 9 lot.simul.m, 10 norm, 10 rint.aram (aram), 7 rint.simul.m (simul.m), 16 rint.summary.lm (summary.lm), 17 rint.summary.simul.lm (summary.simul.lm), 18 qnorm, 12 qqline (qqnorm), 13 qqnorm, 13 rnorm, 14 simul.lm, 9, 15, 19 simul.m, 10, 16 Secial, 2, 11, 12, 15 summary.lm, 17 summary.simul.lm, 18, 19 terms, 6, 18 Uniform, 2, 11, 12, 15 dnorm, 1 estimate, 3 grahn, 4 kurtosis, 5 lm, 8 lm, 6, 8, 17, 18 Normal, 2, 11, 12, 15 aram, 7, 16, 17 20

Package normalp. February 20, 2015

Package normalp. February 20, 2015 Version 0.7.0 Date 2014-12-04 Title Routines for Exonential Power Distribution Package normal February 20, 2015 Author Maintainer Deends R (>= 1.5.0) Descrition

More information

The Poisson Regression Model

The Poisson Regression Model The Poisson Regression Model The Poisson regression model aims at modeling a counting variable Y, counting the number of times that a certain event occurs during a given time eriod. We observe a samle

More information

Monte Carlo Studies. Monte Carlo Studies. Sampling Distribution

Monte Carlo Studies. Monte Carlo Studies. Sampling Distribution Monte Carlo Studies Do not let yourself be intimidated by the material in this lecture This lecture involves more theory but is meant to imrove your understanding of: Samling distributions and tests of

More information

arxiv: v1 [physics.data-an] 26 Oct 2012

arxiv: v1 [physics.data-an] 26 Oct 2012 Constraints on Yield Parameters in Extended Maximum Likelihood Fits Till Moritz Karbach a, Maximilian Schlu b a TU Dortmund, Germany, moritz.karbach@cern.ch b TU Dortmund, Germany, maximilian.schlu@cern.ch

More information

4. Score normalization technical details We now discuss the technical details of the score normalization method.

4. Score normalization technical details We now discuss the technical details of the score normalization method. SMT SCORING SYSTEM This document describes the scoring system for the Stanford Math Tournament We begin by giving an overview of the changes to scoring and a non-technical descrition of the scoring rules

More information

Hotelling s Two- Sample T 2

Hotelling s Two- Sample T 2 Chater 600 Hotelling s Two- Samle T Introduction This module calculates ower for the Hotelling s two-grou, T-squared (T) test statistic. Hotelling s T is an extension of the univariate two-samle t-test

More information

Package bayeslm. R topics documented: June 18, Type Package

Package bayeslm. R topics documented: June 18, Type Package Type Package Package bayeslm June 18, 2018 Title Efficient Sampling for Gaussian Linear Regression with Arbitrary Priors Version 0.8.0 Date 2018-6-17 Author P. Richard Hahn, Jingyu He, Hedibert Lopes Maintainer

More information

Slash Distributions and Applications

Slash Distributions and Applications CHAPTER 2 Slash Distributions and Alications 2.1 Introduction The concet of slash distributions was introduced by Kafadar (1988) as a heavy tailed alternative to the normal distribution. Further literature

More information

Measuring center and spread for density curves. Calculating probabilities using the standard Normal Table (CIS Chapter 8, p 105 mainly p114)

Measuring center and spread for density curves. Calculating probabilities using the standard Normal Table (CIS Chapter 8, p 105 mainly p114) Objectives 1.3 Density curves and Normal distributions Density curves Measuring center and sread for density curves Normal distributions The 68-95-99.7 (Emirical) rule Standardizing observations Calculating

More information

One-way ANOVA Inference for one-way ANOVA

One-way ANOVA Inference for one-way ANOVA One-way ANOVA Inference for one-way ANOVA IPS Chater 12.1 2009 W.H. Freeman and Comany Objectives (IPS Chater 12.1) Inference for one-way ANOVA Comaring means The two-samle t statistic An overview of ANOVA

More information

Finite Mixture EFA in Mplus

Finite Mixture EFA in Mplus Finite Mixture EFA in Mlus November 16, 2007 In this document we describe the Mixture EFA model estimated in Mlus. Four tyes of deendent variables are ossible in this model: normally distributed, ordered

More information

Machine Learning: Homework 4

Machine Learning: Homework 4 10-601 Machine Learning: Homework 4 Due 5.m. Monday, February 16, 2015 Instructions Late homework olicy: Homework is worth full credit if submitted before the due date, half credit during the next 48 hours,

More information

Package sempower. March 27, 2018

Package sempower. March 27, 2018 Tye Package Title Power Analyses for SEM Version 1.0.0 Author Morten Moshagen Package sempower March 27, 2018 Maintainer Morten Moshagen Provides a-riori, ost-hoc, and comromise

More information

Tests for Two Proportions in a Stratified Design (Cochran/Mantel-Haenszel Test)

Tests for Two Proportions in a Stratified Design (Cochran/Mantel-Haenszel Test) Chater 225 Tests for Two Proortions in a Stratified Design (Cochran/Mantel-Haenszel Test) Introduction In a stratified design, the subects are selected from two or more strata which are formed from imortant

More information

A Comparison between Biased and Unbiased Estimators in Ordinary Least Squares Regression

A Comparison between Biased and Unbiased Estimators in Ordinary Least Squares Regression Journal of Modern Alied Statistical Methods Volume Issue Article 7 --03 A Comarison between Biased and Unbiased Estimators in Ordinary Least Squares Regression Ghadban Khalaf King Khalid University, Saudi

More information

Measuring center and spread for density curves. Calculating probabilities using the standard Normal Table (CIS Chapter 8, p 105 mainly p114)

Measuring center and spread for density curves. Calculating probabilities using the standard Normal Table (CIS Chapter 8, p 105 mainly p114) Objectives Density curves Measuring center and sread for density curves Normal distributions The 68-95-99.7 (Emirical) rule Standardizing observations Calculating robabilities using the standard Normal

More information

Package misctools. November 25, 2016

Package misctools. November 25, 2016 Version 0.6-22 Date 2016-11-25 Title Miscellaneous Tools and Utilities Author, Ott Toomet Package misctools November 25, 2016 Maintainer Depends R (>= 2.14.0) Suggests Ecdat

More information

SAS for Bayesian Mediation Analysis

SAS for Bayesian Mediation Analysis Paer 1569-2014 SAS for Bayesian Mediation Analysis Miočević Milica, Arizona State University; David P. MacKinnon, Arizona State University ABSTRACT Recent statistical mediation analysis research focuses

More information

Availability and Maintainability. Piero Baraldi

Availability and Maintainability. Piero Baraldi Availability and Maintainability 1 Introduction: reliability and availability System tyes Non maintained systems: they cannot be reaired after a failure (a telecommunication satellite, a F1 engine, a vessel

More information

Published: 14 October 2013

Published: 14 October 2013 Electronic Journal of Alied Statistical Analysis EJASA, Electron. J. A. Stat. Anal. htt://siba-ese.unisalento.it/index.h/ejasa/index e-issn: 27-5948 DOI: 1.1285/i275948v6n213 Estimation of Parameters of

More information

CHAPTER 5 STATISTICAL INFERENCE. 1.0 Hypothesis Testing. 2.0 Decision Errors. 3.0 How a Hypothesis is Tested. 4.0 Test for Goodness of Fit

CHAPTER 5 STATISTICAL INFERENCE. 1.0 Hypothesis Testing. 2.0 Decision Errors. 3.0 How a Hypothesis is Tested. 4.0 Test for Goodness of Fit Chater 5 Statistical Inference 69 CHAPTER 5 STATISTICAL INFERENCE.0 Hyothesis Testing.0 Decision Errors 3.0 How a Hyothesis is Tested 4.0 Test for Goodness of Fit 5.0 Inferences about Two Means It ain't

More information

Estimation of the large covariance matrix with two-step monotone missing data

Estimation of the large covariance matrix with two-step monotone missing data Estimation of the large covariance matrix with two-ste monotone missing data Masashi Hyodo, Nobumichi Shutoh 2, Takashi Seo, and Tatjana Pavlenko 3 Deartment of Mathematical Information Science, Tokyo

More information

A New Asymmetric Interaction Ridge (AIR) Regression Method

A New Asymmetric Interaction Ridge (AIR) Regression Method A New Asymmetric Interaction Ridge (AIR) Regression Method by Kristofer Månsson, Ghazi Shukur, and Pär Sölander The Swedish Retail Institute, HUI Research, Stockholm, Sweden. Deartment of Economics and

More information

ECON 4130 Supplementary Exercises 1-4

ECON 4130 Supplementary Exercises 1-4 HG Set. 0 ECON 430 Sulementary Exercises - 4 Exercise Quantiles (ercentiles). Let X be a continuous random variable (rv.) with df f( x ) and cdf F( x ). For 0< < we define -th quantile (or 00-th ercentile),

More information

Deriving Indicator Direct and Cross Variograms from a Normal Scores Variogram Model (bigaus-full) David F. Machuca Mory and Clayton V.

Deriving Indicator Direct and Cross Variograms from a Normal Scores Variogram Model (bigaus-full) David F. Machuca Mory and Clayton V. Deriving ndicator Direct and Cross Variograms from a Normal Scores Variogram Model (bigaus-full) David F. Machuca Mory and Clayton V. Deutsch Centre for Comutational Geostatistics Deartment of Civil &

More information

On Introducing Asymmetry into Circular Distributions

On Introducing Asymmetry into Circular Distributions Statistics in the Twenty-First Century: Secial Volume In Honour of Distinguished Professor Dr. Mir Masoom Ali On the Occasion of his 75th Birthday Anniversary PJSOR, Vol. 8, No. 3, ages 531-535, July 2012

More information

Using R in 200D Luke Sonnet

Using R in 200D Luke Sonnet Using R in 200D Luke Sonnet Contents Working with data frames 1 Working with variables........................................... 1 Analyzing data............................................... 3 Random

More information

General Linear Model Introduction, Classes of Linear models and Estimation

General Linear Model Introduction, Classes of Linear models and Estimation Stat 740 General Linear Model Introduction, Classes of Linear models and Estimation An aim of scientific enquiry: To describe or to discover relationshis among events (variables) in the controlled (laboratory)

More information

Solved Problems. (a) (b) (c) Figure P4.1 Simple Classification Problems First we draw a line between each set of dark and light data points.

Solved Problems. (a) (b) (c) Figure P4.1 Simple Classification Problems First we draw a line between each set of dark and light data points. Solved Problems Solved Problems P Solve the three simle classification roblems shown in Figure P by drawing a decision boundary Find weight and bias values that result in single-neuron ercetrons with the

More information

Estimation of Separable Representations in Psychophysical Experiments

Estimation of Separable Representations in Psychophysical Experiments Estimation of Searable Reresentations in Psychohysical Exeriments Michele Bernasconi (mbernasconi@eco.uninsubria.it) Christine Choirat (cchoirat@eco.uninsubria.it) Raffaello Seri (rseri@eco.uninsubria.it)

More information

On split sample and randomized confidence intervals for binomial proportions

On split sample and randomized confidence intervals for binomial proportions On slit samle and randomized confidence intervals for binomial roortions Måns Thulin Deartment of Mathematics, Usala University arxiv:1402.6536v1 [stat.me] 26 Feb 2014 Abstract Slit samle methods have

More information

Package pearson7. June 22, 2016

Package pearson7. June 22, 2016 Version 1.0-2 Date 2016-06-21 Package pearson7 June 22, 2016 Title Maximum Likelihood Inference for the Pearson VII Distribution with Shape Parameter 3/2 Author John Hughes Maintainer John Hughes

More information

Package leiv. R topics documented: February 20, Version Type Package

Package leiv. R topics documented: February 20, Version Type Package Version 2.0-7 Type Package Package leiv February 20, 2015 Title Bivariate Linear Errors-In-Variables Estimation Date 2015-01-11 Maintainer David Leonard Depends R (>= 2.9.0)

More information

Estimating function analysis for a class of Tweedie regression models

Estimating function analysis for a class of Tweedie regression models Title Estimating function analysis for a class of Tweedie regression models Author Wagner Hugo Bonat Deartamento de Estatística - DEST, Laboratório de Estatística e Geoinformação - LEG, Universidade Federal

More information

Package emg. R topics documented: May 17, 2018

Package emg. R topics documented: May 17, 2018 Package emg May 17, 2018 Type Package Title Exponentially Modified Gaussian (EMG) Distribution Version 1.0.7 Date 2018-05-17 Author Shawn Garbett, Mark Kozdoba Maintainer Shawn Garbett

More information

Metric Predicted Variable on Two Groups

Metric Predicted Variable on Two Groups Metric Predicted Variable on Two Groups Tim Frasier Copyright Tim Frasier This work is licensed under the Creative Commons Attribution 4.0 International license. Click here for more information. Goals

More information

On Using FASTEM2 for the Special Sensor Microwave Imager (SSM/I) March 15, Godelieve Deblonde Meteorological Service of Canada

On Using FASTEM2 for the Special Sensor Microwave Imager (SSM/I) March 15, Godelieve Deblonde Meteorological Service of Canada On Using FASTEM2 for the Secial Sensor Microwave Imager (SSM/I) March 15, 2001 Godelieve Deblonde Meteorological Service of Canada 1 1. Introduction Fastem2 is a fast model (multile-linear regression model)

More information

CHAPTER-II Control Charts for Fraction Nonconforming using m-of-m Runs Rules

CHAPTER-II Control Charts for Fraction Nonconforming using m-of-m Runs Rules CHAPTER-II Control Charts for Fraction Nonconforming using m-of-m Runs Rules. Introduction: The is widely used in industry to monitor the number of fraction nonconforming units. A nonconforming unit is

More information

STA 250: Statistics. Notes 7. Bayesian Approach to Statistics. Book chapters: 7.2

STA 250: Statistics. Notes 7. Bayesian Approach to Statistics. Book chapters: 7.2 STA 25: Statistics Notes 7. Bayesian Aroach to Statistics Book chaters: 7.2 1 From calibrating a rocedure to quantifying uncertainty We saw that the central idea of classical testing is to rovide a rigorous

More information

MODELING THE RELIABILITY OF C4ISR SYSTEMS HARDWARE/SOFTWARE COMPONENTS USING AN IMPROVED MARKOV MODEL

MODELING THE RELIABILITY OF C4ISR SYSTEMS HARDWARE/SOFTWARE COMPONENTS USING AN IMPROVED MARKOV MODEL Technical Sciences and Alied Mathematics MODELING THE RELIABILITY OF CISR SYSTEMS HARDWARE/SOFTWARE COMPONENTS USING AN IMPROVED MARKOV MODEL Cezar VASILESCU Regional Deartment of Defense Resources Management

More information

Numerical Linear Algebra

Numerical Linear Algebra Numerical Linear Algebra Numerous alications in statistics, articularly in the fitting of linear models. Notation and conventions: Elements of a matrix A are denoted by a ij, where i indexes the rows and

More information

A MIXED CONTROL CHART ADAPTED TO THE TRUNCATED LIFE TEST BASED ON THE WEIBULL DISTRIBUTION

A MIXED CONTROL CHART ADAPTED TO THE TRUNCATED LIFE TEST BASED ON THE WEIBULL DISTRIBUTION O P E R A T I O N S R E S E A R C H A N D D E C I S I O N S No. 27 DOI:.5277/ord73 Nasrullah KHAN Muhammad ASLAM 2 Kyung-Jun KIM 3 Chi-Hyuck JUN 4 A MIXED CONTROL CHART ADAPTED TO THE TRUNCATED LIFE TEST

More information

Package homtest. February 20, 2015

Package homtest. February 20, 2015 Version 1.0-5 Date 2009-03-26 Package homtest February 20, 2015 Title Homogeneity tests for Regional Frequency Analysis Author Alberto Viglione Maintainer Alberto Viglione

More information

Bayesian Spatially Varying Coefficient Models in the Presence of Collinearity

Bayesian Spatially Varying Coefficient Models in the Presence of Collinearity Bayesian Satially Varying Coefficient Models in the Presence of Collinearity David C. Wheeler 1, Catherine A. Calder 1 he Ohio State University 1 Abstract he belief that relationshis between exlanatory

More information

Supplementary Materials for Robust Estimation of the False Discovery Rate

Supplementary Materials for Robust Estimation of the False Discovery Rate Sulementary Materials for Robust Estimation of the False Discovery Rate Stan Pounds and Cheng Cheng This sulemental contains roofs regarding theoretical roerties of the roosed method (Section S1), rovides

More information

arxiv: v3 [physics.data-an] 23 May 2011

arxiv: v3 [physics.data-an] 23 May 2011 Date: October, 8 arxiv:.7v [hysics.data-an] May -values for Model Evaluation F. Beaujean, A. Caldwell, D. Kollár, K. Kröninger Max-Planck-Institut für Physik, München, Germany CERN, Geneva, Switzerland

More information

First steps of multivariate data analysis

First steps of multivariate data analysis First steps of multivariate data analysis November 28, 2016 Let s Have Some Coffee We reproduce the coffee example from Carmona, page 60 ff. This vignette is the first excursion away from univariate data.

More information

Explore the data. Anja Bråthen Kristoffersen

Explore the data. Anja Bråthen Kristoffersen Explore the data Anja Bråthen Kristoffersen density 0.2 0.4 0.6 0.8 Probability distributions Can be either discrete or continuous (uniform, bernoulli, normal, etc) Defined by a density function, p(x)

More information

Introduction to Probability and Statistics

Introduction to Probability and Statistics Introduction to Probability and Statistics Chater 8 Ammar M. Sarhan, asarhan@mathstat.dal.ca Deartment of Mathematics and Statistics, Dalhousie University Fall Semester 28 Chater 8 Tests of Hyotheses Based

More information

Statistical Computing Session 4: Random Simulation

Statistical Computing Session 4: Random Simulation Statistical Computing Session 4: Random Simulation Paul Eilers & Dimitris Rizopoulos Department of Biostatistics, Erasmus University Medical Center p.eilers@erasmusmc.nl Masters Track Statistical Sciences,

More information

Estimating Time-Series Models

Estimating Time-Series Models Estimating ime-series Models he Box-Jenkins methodology for tting a model to a scalar time series fx t g consists of ve stes:. Decide on the order of di erencing d that is needed to roduce a stationary

More information

Bayesian System for Differential Cryptanalysis of DES

Bayesian System for Differential Cryptanalysis of DES Available online at www.sciencedirect.com ScienceDirect IERI Procedia 7 (014 ) 15 0 013 International Conference on Alied Comuting, Comuter Science, and Comuter Engineering Bayesian System for Differential

More information

#A64 INTEGERS 18 (2018) APPLYING MODULAR ARITHMETIC TO DIOPHANTINE EQUATIONS

#A64 INTEGERS 18 (2018) APPLYING MODULAR ARITHMETIC TO DIOPHANTINE EQUATIONS #A64 INTEGERS 18 (2018) APPLYING MODULAR ARITHMETIC TO DIOPHANTINE EQUATIONS Ramy F. Taki ElDin Physics and Engineering Mathematics Deartment, Faculty of Engineering, Ain Shams University, Cairo, Egyt

More information

Ratio Estimators in Simple Random Sampling Using Information on Auxiliary Attribute

Ratio Estimators in Simple Random Sampling Using Information on Auxiliary Attribute ajesh Singh, ankaj Chauhan, Nirmala Sawan School of Statistics, DAVV, Indore (M.., India Florentin Smarandache Universit of New Mexico, USA atio Estimators in Simle andom Samling Using Information on Auxiliar

More information

State Estimation with ARMarkov Models

State Estimation with ARMarkov Models Deartment of Mechanical and Aerosace Engineering Technical Reort No. 3046, October 1998. Princeton University, Princeton, NJ. State Estimation with ARMarkov Models Ryoung K. Lim 1 Columbia University,

More information

Package ppcc. June 28, 2017

Package ppcc. June 28, 2017 Type Package Version 1.0 Date 2017-06-27 Title Probability Plot Correlation Coefficient Test Author Thorsten Pohlert Package ppcc June 28, 2017 Maintainer Thorsten Pohlert Description

More information

Characterizing the Behavior of a Probabilistic CMOS Switch Through Analytical Models and Its Verification Through Simulations

Characterizing the Behavior of a Probabilistic CMOS Switch Through Analytical Models and Its Verification Through Simulations Characterizing the Behavior of a Probabilistic CMOS Switch Through Analytical Models and Its Verification Through Simulations PINAR KORKMAZ, BILGE E. S. AKGUL and KRISHNA V. PALEM Georgia Institute of

More information

AN OPTIMAL CONTROL CHART FOR NON-NORMAL PROCESSES

AN OPTIMAL CONTROL CHART FOR NON-NORMAL PROCESSES AN OPTIMAL CONTROL CHART FOR NON-NORMAL PROCESSES Emmanuel Duclos, Maurice Pillet To cite this version: Emmanuel Duclos, Maurice Pillet. AN OPTIMAL CONTROL CHART FOR NON-NORMAL PRO- CESSES. st IFAC Worsho

More information

Package ForwardSearch

Package ForwardSearch Package ForwardSearch February 19, 2015 Type Package Title Forward Search using asymptotic theory Version 1.0 Date 2014-09-10 Author Bent Nielsen Maintainer Bent Nielsen

More information

Package gk. R topics documented: February 4, Type Package Title g-and-k and g-and-h Distribution Functions Version 0.5.

Package gk. R topics documented: February 4, Type Package Title g-and-k and g-and-h Distribution Functions Version 0.5. Type Package Title g-and-k and g-and-h Distribution Functions Version 0.5.1 Date 2018-02-04 Package gk February 4, 2018 Functions for the g-and-k and generalised g-and-h distributions. License GPL-2 Imports

More information

STK4900/ Lecture 7. Program

STK4900/ Lecture 7. Program STK4900/9900 - Lecture 7 Program 1. Logistic regression with one redictor 2. Maximum likelihood estimation 3. Logistic regression with several redictors 4. Deviance and likelihood ratio tests 5. A comment

More information

Recent Advances on Computer Experiment

Recent Advances on Computer Experiment All Chinese Look Alike? Why? Recent Advances on Comuter Exeriment Dennis Lin The Pennsylvania State University DKL5@su.edu February, 008 OR Seminar Penn State (US) criteria for eole classification (as

More information

Energia Solar Fotovoltaica Problem Sheet 1 - Solutions (Ver. 2d: )

Energia Solar Fotovoltaica Problem Sheet 1 - Solutions (Ver. 2d: ) 1 harging a mobile hone with small V anel 11 The examle here uses 1800 mah caacity tery This caacity rating means that the tery can deliver 1800mA for 1h, or 900 ma for h, or 600mA for 3h, etc i / s it

More information

Package skellam. R topics documented: December 15, Version Date

Package skellam. R topics documented: December 15, Version Date Version 0.2.0 Date 2016-12-13 Package skellam December 15, 2016 Title Densities and Sampling for the Skellam Distribution Author Jerry W. Lewis, Patrick E. Brown , Michail Tsagris

More information

2. Sample representativeness. That means some type of probability/random sampling.

2. Sample representativeness. That means some type of probability/random sampling. 1 Neuendorf Cluster Analysis Assumes: 1. Actually, any level of measurement (nominal, ordinal, interval/ratio) is accetable for certain tyes of clustering. The tyical methods, though, require metric (I/R)

More information

RANDOM WALKS AND PERCOLATION: AN ANALYSIS OF CURRENT RESEARCH ON MODELING NATURAL PROCESSES

RANDOM WALKS AND PERCOLATION: AN ANALYSIS OF CURRENT RESEARCH ON MODELING NATURAL PROCESSES RANDOM WALKS AND PERCOLATION: AN ANALYSIS OF CURRENT RESEARCH ON MODELING NATURAL PROCESSES AARON ZWIEBACH Abstract. In this aer we will analyze research that has been recently done in the field of discrete

More information

Statistics II Logistic Regression. So far... Two-way repeated measures ANOVA: an example. RM-ANOVA example: the data after log transform

Statistics II Logistic Regression. So far... Two-way repeated measures ANOVA: an example. RM-ANOVA example: the data after log transform Statistics II Logistic Regression Çağrı Çöltekin Exam date & time: June 21, 10:00 13:00 (The same day/time lanned at the beginning of the semester) University of Groningen, Det of Information Science May

More information

Flexible Tweedie regression models for continuous data

Flexible Tweedie regression models for continuous data Flexible Tweedie regression models for continuous data arxiv:1609.03297v1 [stat.me] 12 Se 2016 Wagner H. Bonat and Célestin C. Kokonendji Abstract Tweedie regression models rovide a flexible family of

More information

Applicable Analysis and Discrete Mathematics available online at HENSEL CODES OF SQUARE ROOTS OF P-ADIC NUMBERS

Applicable Analysis and Discrete Mathematics available online at   HENSEL CODES OF SQUARE ROOTS OF P-ADIC NUMBERS Alicable Analysis and Discrete Mathematics available online at htt://efmath.etf.rs Al. Anal. Discrete Math. 4 (010), 3 44. doi:10.98/aadm1000009m HENSEL CODES OF SQUARE ROOTS OF P-ADIC NUMBERS Zerzaihi

More information

On Wrapping of Exponentiated Inverted Weibull Distribution

On Wrapping of Exponentiated Inverted Weibull Distribution IJIRST International Journal for Innovative Research in Science & Technology Volume 3 Issue 11 Aril 217 ISSN (online): 2349-61 On Wraing of Exonentiated Inverted Weibull Distribution P.Srinivasa Subrahmanyam

More information

Package sklarsomega. May 24, 2018

Package sklarsomega. May 24, 2018 Type Package Package sklarsomega May 24, 2018 Title Measuring Agreement Using Sklar's Omega Coefficient Version 1.0 Date 2018-05-22 Author John Hughes Maintainer John Hughes

More information

ON THE ESTIMATION OF THE STRUCTURE PARAMETER OF A NORMAL DISTRIBUTION OF ORDER P

ON THE ESTIMATION OF THE STRUCTURE PARAMETER OF A NORMAL DISTRIBUTION OF ORDER P STATISTICA, ao LX,. 1, 003 ON THE ESTIMATION OF THE STRUCTURE PARAMETER OF A NORMAL DISTRIBUTION OF ORDER P Agelo M. Mieo 1. INTRODUCTION I statistical iferece the usual hyotheses that we make o samle

More information

Bayesian Networks Practice

Bayesian Networks Practice Bayesian Networks Practice Part 2 2016-03-17 Byoung-Hee Kim, Seong-Ho Son Biointelligence Lab, CSE, Seoul National University Agenda Probabilistic Inference in Bayesian networks Probability basics D-searation

More information

Information collection on a graph

Information collection on a graph Information collection on a grah Ilya O. Ryzhov Warren Powell February 10, 2010 Abstract We derive a knowledge gradient olicy for an otimal learning roblem on a grah, in which we use sequential measurements

More information

Information collection on a graph

Information collection on a graph Information collection on a grah Ilya O. Ryzhov Warren Powell October 25, 2009 Abstract We derive a knowledge gradient olicy for an otimal learning roblem on a grah, in which we use sequential measurements

More information

Package gma. September 19, 2017

Package gma. September 19, 2017 Type Package Title Granger Mediation Analysis Version 1.0 Date 2018-08-23 Package gma September 19, 2017 Author Yi Zhao , Xi Luo Maintainer Yi Zhao

More information

Modeling and Estimation of Full-Chip Leakage Current Considering Within-Die Correlation

Modeling and Estimation of Full-Chip Leakage Current Considering Within-Die Correlation 6.3 Modeling and Estimation of Full-Chi Leaage Current Considering Within-Die Correlation Khaled R. eloue, Navid Azizi, Farid N. Najm Deartment of ECE, University of Toronto,Toronto, Ontario, Canada {haled,nazizi,najm}@eecg.utoronto.ca

More information

Sampling and Distortion Tradeoffs for Bandlimited Periodic Signals

Sampling and Distortion Tradeoffs for Bandlimited Periodic Signals Samling and Distortion radeoffs for Bandlimited Periodic Signals Elaheh ohammadi and Farokh arvasti Advanced Communications Research Institute ACRI Deartment of Electrical Engineering Sharif University

More information

ute measures of uncertainty called standard errors for these b j estimates and the resulting forecasts if certain conditions are satis- ed. Note the e

ute measures of uncertainty called standard errors for these b j estimates and the resulting forecasts if certain conditions are satis- ed. Note the e Regression with Time Series Errors David A. Dickey, North Carolina State University Abstract: The basic assumtions of regression are reviewed. Grahical and statistical methods for checking the assumtions

More information

Cryptography. Lecture 8. Arpita Patra

Cryptography. Lecture 8. Arpita Patra Crytograhy Lecture 8 Arita Patra Quick Recall and Today s Roadma >> Hash Functions- stands in between ublic and rivate key world >> Key Agreement >> Assumtions in Finite Cyclic grous - DL, CDH, DDH Grous

More information

Metric Predicted Variable on One Group

Metric Predicted Variable on One Group Metric Predicted Variable on One Group Tim Frasier Copyright Tim Frasier This work is licensed under the Creative Commons Attribution 4.0 International license. Click here for more information. Prior Homework

More information

Notes on Instrumental Variables Methods

Notes on Instrumental Variables Methods Notes on Instrumental Variables Methods Michele Pellizzari IGIER-Bocconi, IZA and frdb 1 The Instrumental Variable Estimator Instrumental variable estimation is the classical solution to the roblem of

More information

lm statistics Chris Parrish

lm statistics Chris Parrish lm statistics Chris Parrish 2017-04-01 Contents s e and R 2 1 experiment1................................................. 2 experiment2................................................. 3 experiment3.................................................

More information

Named Entity Recognition using Maximum Entropy Model SEEM5680

Named Entity Recognition using Maximum Entropy Model SEEM5680 Named Entity Recognition using Maximum Entroy Model SEEM5680 Named Entity Recognition System Named Entity Recognition (NER): Identifying certain hrases/word sequences in a free text. Generally it involves

More information

Algebraic Parameter Estimation of Damped Exponentials

Algebraic Parameter Estimation of Damped Exponentials Algebraic Parameter Estimation of Damed Exonentials Aline Neves, Maria Miranda, Mamadou Mbou To cite this version: Aline Neves, Maria Miranda, Mamadou Mbou Algebraic Parameter Estimation of Damed Exonentials

More information

Towards understanding the Lorenz curve using the Uniform distribution. Chris J. Stephens. Newcastle City Council, Newcastle upon Tyne, UK

Towards understanding the Lorenz curve using the Uniform distribution. Chris J. Stephens. Newcastle City Council, Newcastle upon Tyne, UK Towards understanding the Lorenz curve using the Uniform distribution Chris J. Stehens Newcastle City Council, Newcastle uon Tyne, UK (For the Gini-Lorenz Conference, University of Siena, Italy, May 2005)

More information

Outline. Markov Chains and Markov Models. Outline. Markov Chains. Markov Chains Definitions Huizhen Yu

Outline. Markov Chains and Markov Models. Outline. Markov Chains. Markov Chains Definitions Huizhen Yu and Markov Models Huizhen Yu janey.yu@cs.helsinki.fi Det. Comuter Science, Univ. of Helsinki Some Proerties of Probabilistic Models, Sring, 200 Huizhen Yu (U.H.) and Markov Models Jan. 2 / 32 Huizhen Yu

More information

Multilayer Perceptron Neural Network (MLPs) For Analyzing the Properties of Jordan Oil Shale

Multilayer Perceptron Neural Network (MLPs) For Analyzing the Properties of Jordan Oil Shale World Alied Sciences Journal 5 (5): 546-552, 2008 ISSN 1818-4952 IDOSI Publications, 2008 Multilayer Percetron Neural Network (MLPs) For Analyzing the Proerties of Jordan Oil Shale 1 Jamal M. Nazzal, 2

More information

Radial Basis Function Networks: Algorithms

Radial Basis Function Networks: Algorithms Radial Basis Function Networks: Algorithms Introduction to Neural Networks : Lecture 13 John A. Bullinaria, 2004 1. The RBF Maing 2. The RBF Network Architecture 3. Comutational Power of RBF Networks 4.

More information

COURSE OUTLINE. Introduction Signals and Noise: 3) Analysis and Simulation Filtering Sensors and associated electronics. Sensors, Signals and Noise

COURSE OUTLINE. Introduction Signals and Noise: 3) Analysis and Simulation Filtering Sensors and associated electronics. Sensors, Signals and Noise Sensors, Signals and Noise 1 COURSE OUTLINE Introduction Signals and Noise: 3) Analysis and Simulation Filtering Sensors and associated electronics Noise Analysis and Simulation White Noise Band-Limited

More information

Using the Divergence Information Criterion for the Determination of the Order of an Autoregressive Process

Using the Divergence Information Criterion for the Determination of the Order of an Autoregressive Process Using the Divergence Information Criterion for the Determination of the Order of an Autoregressive Process P. Mantalos a1, K. Mattheou b, A. Karagrigoriou b a.deartment of Statistics University of Lund

More information

FE FORMULATIONS FOR PLASTICITY

FE FORMULATIONS FOR PLASTICITY G These slides are designed based on the book: Finite Elements in Plasticity Theory and Practice, D.R.J. Owen and E. Hinton, 1970, Pineridge Press Ltd., Swansea, UK. 1 Course Content: A INTRODUCTION AND

More information

Analysis of the Effect of Number of Knots in a Trajectory on Motion Characteristics of a 3R Planar Manipulator

Analysis of the Effect of Number of Knots in a Trajectory on Motion Characteristics of a 3R Planar Manipulator Analysis of the Effect of Number of Knots in a Trajectory on Motion Characteristics of a Planar Maniulator Suarno Bhattacharyya & Tarun Kanti Naskar Mechanical Engineering Deartment, Jadavur University,

More information

dn i where we have used the Gibbs equation for the Gibbs energy and the definition of chemical potential

dn i where we have used the Gibbs equation for the Gibbs energy and the definition of chemical potential Chem 467 Sulement to Lectures 33 Phase Equilibrium Chemical Potential Revisited We introduced the chemical otential as the conjugate variable to amount. Briefly reviewing, the total Gibbs energy of a system

More information

STABILITY ANALYSIS TOOL FOR TUNING UNCONSTRAINED DECENTRALIZED MODEL PREDICTIVE CONTROLLERS

STABILITY ANALYSIS TOOL FOR TUNING UNCONSTRAINED DECENTRALIZED MODEL PREDICTIVE CONTROLLERS STABILITY ANALYSIS TOOL FOR TUNING UNCONSTRAINED DECENTRALIZED MODEL PREDICTIVE CONTROLLERS Massimo Vaccarini Sauro Longhi M. Reza Katebi D.I.I.G.A., Università Politecnica delle Marche, Ancona, Italy

More information

The decision-feedback equalizer optimization for Gaussian noise

The decision-feedback equalizer optimization for Gaussian noise Journal of Theoretical and Alied Comuter Science Vol. 8 No. 4 4. 5- ISSN 99-634 (rinted 3-5653 (online htt://www.jtacs.org The decision-feedback eualizer otimization for Gaussian noise Arkadiusz Grzbowski

More information

Invariant yield calculation

Invariant yield calculation Chater 6 Invariant yield calculation he invariant yield of the neutral ions and η mesons er one minimum bias collision as a function of the transverse momentum is given by E d3 N d 3 = d 3 N d dydφ = d

More information

START Selected Topics in Assurance

START Selected Topics in Assurance START Selected Toics in Assurance Related Technologies Table of Contents Introduction Statistical Models for Simle Systems (U/Down) and Interretation Markov Models for Simle Systems (U/Down) and Interretation

More information

Regression for Symbolic Data

Regression for Symbolic Data Symbolic Data Analysis: Taking Variability in Data into Account Regression for Symbolic Data Sónia Dias I.P. Viana do Castelo & LIAAD-INESC TEC, Univ. Porto Paula Brito Fac. Economia & LIAAD-INESC TEC,

More information

and INVESTMENT DECISION-MAKING

and INVESTMENT DECISION-MAKING CONSISTENT INTERPOLATIVE FUZZY LOGIC and INVESTMENT DECISION-MAKING Darko Kovačević, č Petar Sekulić and dal Aleksandar Rakićević National bank of Serbia Belgrade, Jun 23th, 20 The structure of the resentation

More information