Week 3 [16+ Sept.] Class Activities. File: week-03-15sep08.doc/.pdf Directory: \\Muserver2\USERS\B\\baileraj\Classes\sta402\handouts

Size: px
Start display at page:

Download "Week 3 [16+ Sept.] Class Activities. File: week-03-15sep08.doc/.pdf Directory: \\Muserver2\USERS\B\\baileraj\Classes\sta402\handouts"

Transcription

1 Week 3 [16+ Sept.] Class Activities File: week-03-15sep08.doc/.pdf Directory: \\Muserver2\USERS\B\\baileraj\Classes\sta402\handouts Week 3 Topic -- Complex table construction & output control (i.e., pretty output) * PROC TABULATE for producing nicely-formatted tables * Introduce the Output Delivery System (ODS) for customizing procedure output PROC TABULATE (producing fancier results tables in SAS) References: Haworth LE (1999) PROC TABULATE by Example. Cary, NC: SAS Institute Inc. 3.1 PROC TABULATE PROC TABULATE <option(s)>; CLASS variable(s) </ options>; * identify non-numeric vars; FREQ variable; * identify variable containing frequency of observation; TABLE <<page-expression,> row-expression,> column-expression</ table-option(s)>; VAR analysis-variable(s)</ options>; * identify analysis vars; WEIGHT variable; * identify variable name e.g. sampling wts; * FORMATTING related subcommands CLASSLEV variable(s) / STYLE=<style-element-name PARENT> <[style-attribute-specification(s)] >; KEYLABEL keyword-1='description-1' <...keyword-n='description-n'>; KEYWORD keyword(s) / STYLE=<style-element-name PARENT> <[style-attribute-specification(s)] >; [* check out results of search for Tabulate syntax on SAS doc] 1

2 Comments: * concatenation (blank) operator * crossing (*) operator * format modifiers * grouping elements (parentheses) operator * ALL class variable 3.2: Building from simple specifications: nitrofen data EXAMPLE 3.1: PROC TABULATE and the nitrofen data produces data nitrofen; infile '\\Muserver2\USERS\B\BAILERAJ\public.www\classes\sta402\data\ch2- dat.txt' firstobs=16 expandtabs missover pad ; animal conc brood1 brood2 brood3 total 2.; ods rtf BODYTITLE; proc tabulate data=nitrofen; class conc; var brood1 brood2 brood3 total; table (brood1 brood2 brood3 total)*conc, n*f=3. min*f=3. q1*f=3. median*f=4.1 q3*f=3. max*f=3.; ods rtf close; brood1 N Min Q1 Median Q3 Max conc

3 brood2 brood3 Total N Min Q1 Median Q3 Max conc conc conc GOAL Variable Brood 1 Brood 2 Brood 3 Total Sample size Min Q1 Median Q3 Max data nitrofen; infile '\\Muserver2\USERS\B\BAILERAJ\public.www\classes\sta402\data\ch2- dat.txt' firstobs=16 expandtabs missover pad ; animal conc brood1 brood2 brood3 total 2.; ods rtf BODYTITLE; proc tabulate data=nitrofen; var brood1 brood2 brood3 total; 3

4 table brood1 brood2 brood3 total, n min q1 median q3 max; ods rtf close; which results in brood1 brood2 brood3 total N Min Q1 Median Q3 Max proc tabulate data=nitrofen; class conc; var brood1 brood2 brood3 total; table conc, brood1 brood2 brood3 total, n min q1 median q3 max; which produces 5 tables, one for each concentration group, i.e. conc 0 N Min Q1 Median Q3 Max brood brood brood total conc 80 N Min Q1 Median Q3 Max brood brood brood total

5 and (omitting conc=160 and conc=235 tables) conc 310 Final table produced via N Min Q1 Median Q3 Max brood brood brood total proc tabulate data=nitrofen; class conc; var brood1 brood2 brood3 total; table (brood1 brood2 brood3 total)*conc, n*f=3. min*f=3. q1*f=3. median*f=4.1 q3*f=3. max*f=3.; QUESTION: how would the table change if you requested the following table table conc*(brood1 brood2 brood3 total), n*f=3. min*f=3. q1*f=3. median*f=4.1 q3*f=3. max*f=3.; 3.3: Enhancing PROC TABULATE output data country; title 'country data analysis'; infile \\Muserver2\USERS\B\BAILERAJ\public.www\classes\sta402\data\country.data ; input name $ area popnsize pcturban lang $ liter lifemen lifewom pcgnp; logarea = log10(area); logpopn = log10(popnsize); loggnp = log10(pcgnp); density = popnsize/area; * construct density variable; ienglish = (lang="english"); drop area popnsize pcgnp; proc univariate data=country; * calculate %tiles of density; var density; id name; data country; set country; * define density categorical var; if density <= then density_cat=1; * [min, Q1]; else if density <= then density_cat=2; * (Q1, Q3]; else density_cat=3; * (Q3, max]; 5

6 proc freq data=country; table density_cat; * check construction of density category variable; ods rtf BODYTITLE; proc tabulate data=country missing; class density_cat; var lifemen lifewom liter loggnp; table (lifemen lifewom liter loggnp)*(n mean median stddev), density_cat; ods rtf close; lifemen lifewom liter loggnp proc format; value dfmt 1= Least Dense 25%" 2= Middle 50% 3= Most Dense 25% ; ods rtf bodytitle; proc tabulate data=country missing; class density_cat; var lifemen lifewom liter loggnp; density_cat N Mean Median StdDev N Mean Median StdDev N Mean Median StdDev N Mean Median StdDev

7 format density_cat dfmt.; table (lifemen= Life Expectancy (Men) lifewom= Life Expectancy (Women) liter= % Literate loggnp= Log10 GNP )* (n= # countries *f=2. mean= Mean *f=4.1 median= Median *f=4.1 stddev= Std. Dev. *f=4.1), density_cat= Population Density ; ods rtf close; Life Expectancy (Men) Life Expectancy (Women) % Literate Log10 GNP Population Density Least Dense 25% Middle 50% Most Dense 25% # countries Mean Median Std. Dev # countries Mean Median Std. Dev # countries Mean Median Std. Dev # countries Mean Median Std. Dev Output Delivery System (ODS) ODS References Gupta, S. (2003) Quick Results with the Output Delivery System. SAS Institute Inc., Cary, NC USA. 7

8 Delwiche LD and Slaughter SJ. (2003) The Little SAS Book: A Primer, 3rd edition. SAS Institute. Cary, NC, USA. [pages ] Haworth LE (2001) Output Delivery System: The Basics. SAS Institute Inc. Cary, NC USA. ODS Basics What is ODS? * method of delivering output in a variety of formats (other than the default listing format ) * options available include HTML, Rich Text Format (RTF), PS, PDF, SAS data sets Basic ODS Terminology destinations locations to which ODS routes output (e.g. LISTING, HTML, RTF, PRINTER, PDF, OUTPUT new data set) objects output entities created by ODS to store the formatted results styles font/color/other attributes of a report Basic syntax of ODS statements * identify output objects; ODS TRACE ON </options>; * open output destination; ODS destination <FILE=filename>; * create SAS data set with output object; ODS OUTPUT output-object-name=sas-data-set-name; * [optional] select particular objects for inclusion; ODS <destination> SELECT output-object-name; PROC PROC PROC ODS <destination> CLOSE; ODS TRACE OFF; 8

9 3.4.2 Favorite Destinations RTF, HTML and even PDF data country; infile \\Muserver2\USERS\B\BAILERAJ\public.www\classes\sta402\data\country.data ; input name $ area popnsize pcturban lang $ liter lifemen lifewom pcgnp; loggnp = log10(pcgnp); density = popnsize/area; * construct density variable & categories; if density <= then density_cat=1; * [min, Q1]; else if density <= then density_cat=2; * (Q1, Q3]; else density_cat=3; * (Q3, max]; /* set up formats for the density categories */ proc format; value dfmt 1= Least Dense 25%" 2= Middle 50% 3= Most Dense 25% ; ODS RTF file= \\Muserver2\USERS\B\BAILERAJ\public.www\classes\sta402\examples\tab.rtf ; ODS PDF file= \\Muserver2\USERS\B\BAILERAJ\public.www\classes\sta402\examples\tab.pdf ; ODS HTML file= \\Muserver2\USERS\B\BAILERAJ\public.www\classes\sta402\examples\tab.htm l ; proc tabulate data=country missing; class density_cat; var lifemen lifewom liter loggnp; format density_cat dfmt.; table (lifemen= Life Expectancy (Men) lifewom= Life Expectancy (Women) liter= % Literate loggnp= Log10 GNP )* (n= # countries *f=2. mean= Mean *f=4.1 median= Median *f=4.1 stddev= Std. Dev. *f=4.1), density_cat= Population Density ; ODS RTF CLOSE; ODS PDF CLOSE; ODS HTML CLOSE; produced the following table in RICH TEXT FORMAT ( tab.rtf file) 9

10 Life Expectancy (Men) Life Expectancy (Women) % Literate Log10 GNP Population Density Least Dense 25% Middle 50% Most Dense 25% # countries Mean Median Std. Dev # countries Mean Median Std. Dev # countries Mean Median Std. Dev # countries Mean Median Std. Dev

11 and the following table in HTML format ( tab.html file) 11

12 data country; infile \\Muserver2\USERS\B\BAILERAJ\public.www\classes\sta402\data\country.data ; input name $ area popnsize pcturban lang $ liter lifemen lifewom pcgnp; loggnp = log10(pcgnp); density = popnsize/area; * construct density variable & categories; if density <= then density_cat=1; * [min, Q1]; else if density <= then density_cat=2; * (Q1, Q3]; else density_cat=3; * (Q3, max]; /* set up formats for the density categories */ proc format; value dfmt 1= Least Dense 25%" 2= Middle 50% 3= Most Dense 25% ; 12

13 ODS HTML path= \\Muserver2\USERS\B\BAILERAJ\public.www\classes\sta402\examples body = country-body.html /* Output objects */ contents = country-toc.html /* Table of contents */ frame = country-frame.html /* organizes display */ newfile = NONE; /* all results to one file*/ proc univariate data=country; * calculate %tiles of density; var density; id name; proc tabulate data=country missing; class density_cat; var lifemen lifewom liter loggnp; format density_cat dfmt.; table (lifemen= Life Expectancy (Men) lifewom= Life Expectancy (Women) liter= % Literate loggnp= Log10 GNP )* (n= # countries *f=2. mean= Mean *f=4.1 median= Median *f=4.1 stddev= Std. Dev. *f=4.1), density_cat= Population Density ; proc gplot; plot lifewom*liter; label lifewom= Life Expectancy (Women) ; label liter= % literacy in population ; ods html close; 13

14 EXAMPLE 3.4: Generating a regression data set data simreg; beta0 = 3; * Simulate Y ~ N( X, sigma = 2); beta1 = 1.5; sigma = 2; do nobs = 1 to 2; do x = 1 to 10; y = beta0 + beta1*x + sigma*rannor(54321); output; end; end; ods rtf bodytitle; proc print; ods rtf close; Obs beta0 beta1 sigma nobs x y

15 Obs beta0 beta1 sigma nobs x y ods rtf bodytitle; proc reg; model y = x; ods rtf close; produces Number of Observations Read 20 Number of Observations Used 20 15

16 Source DF Analysis of Variance Sum of Squares Mean Square F Value Pr > F Model <.0001 Error Corrected Total Root MSE R-Square Dependent Mean Adj R-Sq Coeff Var Variable DF Parameter Estimates Parameter Estimate Standard Error t Value Pr > t Intercept x <.0001 EXAMPLE 3.5: Listing the output objects produced. ods trace on /listing; proc reg; model y = x; ods trace off; which produces The REG Procedure Model: MODEL1 Dependent Variable: y Output Added: Name: NObs Label: Number of Observations Template: Stat.Reg.NObs Path: Reg.MODEL1.Fit.y.NObs Number of Observations Read 20 Number of Observations Used 20 16

17 Output Added: Name: ANOVA Label: Analysis of Variance Template: Stat.REG.ANOVA Path: Reg.MODEL1.Fit.y.ANOVA Analysis of Variance Sum of Mean Source DF Squares Square F Value Pr > F Model <.0001 Error Corrected Total Output Added: Name: FitStatistics Label: Fit Statistics Template: Stat.REG.FitStatistics Path: Reg.MODEL1.Fit.y.FitStatistics Root MSE R-Square Dependent Mean Adj R-Sq Coeff Var Output Added: Name: ParameterEstimates Label: Parameter Estimates Template: Stat.REG.ParameterEstimates Path: Reg.MODEL1.Fit.y.ParameterEstimates Parameter Estimates Parameter Standard Variable DF Estimate Error t Value Pr > t Intercept x <.0001 ods select ParameterEstimates; ods rtf bodytitle; proc reg; model y = x; ods rtf close; which produces 17

18 Variable DF Parameter Estimates Parameter Estimate Standard Error t Value Pr > t Intercept x <.0001 As an aside, this is equivalent to using the ODS EXCLUDE statement. Here, this output object would be selected by ods exclude NObs ANOVA FitStatistics ; ods rtf bodytitle; proc reg; model y = x; ods rtf close; Another Destination that Stat Programmers should visit OUTPUT data simreg; beta0 = 3; * Simulate Y ~ N( X, sigma = 2); beta1 = 1.5; sigma = 2; do iexpt = 1 to 2000; * generate 2000 data sets; do nobs = 1 to 2; * with 2 replicates at x=1 to 10 by 1; do x = 1 to 10; y = beta0 + beta1*x + sigma*rannor(54321); output; end; end; end; ods output ParameterEstimates=ParmEst; proc sort; by iexpt; proc reg; by iexpt; model y = x; ods output close; data ParmEst2; set ParmEst; retain b0; if variable="intercept" then b0 = estimate; else do; 18

19 b1 = estimate; keep iexpt b0 b1; output; end; proc print data=parmest2; * a nice debugging check; ods rtf bodytitle; proc means; var b0 b1; proc gplot; plot b0*b1; ods rtf close; which produces Variable N Mean Std Dev Minimum Maximum b0 b and b b1 19

20 Exercises 1. One of the best ways to learn more about PROC TABULATE is to play with toy data examples. Try to predict the results of each table prior to running the procedure. options formdlim="-"; data junk; input group $ type $ var1 var2; datalines; a y a y a z a z b y b y b z b z ; proc print; proc tabulate; var var1; class group type; table group*type,var1*mean; proc tabulate; var var1; class group type; table group,type*var1*mean; proc tabulate; var var1 var2; class group; table (var1 var2)*mean, group; proc tabulate; var var1 var2; class group; table (var1 var2)*(n mean), group; 20

Multiple Imputation and Multiple Regression with SAS and IBM SPSS

Multiple Imputation and Multiple Regression with SAS and IBM SPSS Multiple Imputation and Multiple Regression with SAS and IBM SPSS See IntroQ Questionnaire for a description of the survey used to generate the data used here. *** Mult-Imput_M-Reg.sas ***; options pageno=min

More information

Need Additional Statistics in Your Report? - ODS OUTPUT to the Rescue!

Need Additional Statistics in Your Report? - ODS OUTPUT to the Rescue! Paper 3253-2015 Need Additional Statistics in Your Report? - ODS OUTPUT to the Rescue! Deborah Buck, inventiv Health. ABSTRACT You might be familiar with or experienced in writing or running reports using

More information

Speaking Klingon: The Power of PROC TABULATE

Speaking Klingon: The Power of PROC TABULATE TU-09 Speaking Klingon: The Power of PROC TABULATE Dianne Louise Rhodes, Westat, Rockville, Maryland ABSTRACT A frustrated colleague once complained to me that he couldn t understand the SAS Reference

More information

F u = t n+1, t f = 1994, 2005

F u = t n+1, t f = 1994, 2005 Forecasting an Electric Utility's Emissions Using SAS/AF and SAS/STAT Software: A Linear Analysis Md. Azharul Islam, The Ohio State University, Columbus, Ohio. David Wang, The Public Utilities Commission

More information

Shubha Manjunath, eclinical Solutions, Mansfield, MA Shirish Nalavade, Eliassen Group Inc., Somerset, NJ

Shubha Manjunath, eclinical Solutions, Mansfield, MA Shirish Nalavade, Eliassen Group Inc., Somerset, NJ PharmaSUG2014 - CC48 Creating PDF Reports using Output Delivery System Shubha Manjunath, eclinical Solutions, Mansfield, MA Shirish Nalavade, Eliassen Group Inc., Somerset, NJ ABSTRACT Output Delivery

More information

Introduction of STATA

Introduction of STATA Introduction of STATA News: There is an introductory course on STATA offered by CIS Description: Intro to STATA On Tue, Feb 13th from 4:00pm to 5:30pm in CIT 269 Seats left: 4 Windows, 7 Macintosh For

More information

Final Exam Spring Bread-and-Butter Edition

Final Exam Spring Bread-and-Butter Edition Final Exam Spring 1996 Bread-and-Butter Edition An advantage of the general linear model approach or the neoclassical approach used in Judd & McClelland (1989) is the ability to generate and test complex

More information

Output Delivery System (ODS) in SAS

Output Delivery System (ODS) in SAS Output Delivery System (ODS) in SAS STAT:5201 Week 11 - Lecture 1 1 / 20 ODS output delivery system in SAS Purpose: To allow for more flexibility in the kind of SAS output that the user can produce. Benefit

More information

Regression diagnostics

Regression diagnostics Regression diagnostics Biometry 755 Spring 2009 Regression diagnostics p. 1/48 Introduction Every statistical method is developed based on assumptions. The validity of results derived from a given method

More information

AcaStat How To Guide. AcaStat. Software. Copyright 2016, AcaStat Software. All rights Reserved.

AcaStat How To Guide. AcaStat. Software. Copyright 2016, AcaStat Software. All rights Reserved. AcaStat How To Guide AcaStat Software Copyright 2016, AcaStat Software. All rights Reserved. http://www.acastat.com Table of Contents Frequencies... 3 List Variables... 4 Descriptives... 5 Explore Means...

More information

A SAS Macro to Analyze Data From a Matched or Finely Stratified Case-Control Design

A SAS Macro to Analyze Data From a Matched or Finely Stratified Case-Control Design A SAS Macro to Analyze Data From a Matched or Finely Stratified Case-Control Design Robert A. Vierkant, Terry M. Therneau, Jon L. Kosanke, James M. Naessens Mayo Clinic, Rochester, MN ABSTRACT A matched

More information

Variable Selection Methods

Variable Selection Methods Variable Selection Methods PROBLEM: Find a set of predictor variables which gives a good fit, predicts the dependent value well and is as small as possible. So far have used F and t tests to compare 2

More information

Mean and Individual Subject Graphs of Concentration vs. Time Data Using PROC SGPLOT

Mean and Individual Subject Graphs of Concentration vs. Time Data Using PROC SGPLOT PharmaSUG 2017 - Paper DV04 Mean and Individual Subject Graphs of Concentration vs. Time Data Using PROC SGPLOT ABSTRACT Pooja Trivedi, Cadila Healthcare Limited, Ahmedabad, India In clinical research

More information

Output Delivery System (ODS) in SAS

Output Delivery System (ODS) in SAS Statistical Consulting Topics Output Delivery System (ODS) in SAS Purpose: To allow for more flexibility in the kind of SAS output that the user can produce. Benefit to consultant: For many analyses, the

More information

BIO 226: Applied Longitudinal Analysis. Homework 2 Solutions Due Thursday, February 21, 2013 [100 points]

BIO 226: Applied Longitudinal Analysis. Homework 2 Solutions Due Thursday, February 21, 2013 [100 points] Prof. Brent Coull TA Shira Mitchell BIO 226: Applied Longitudinal Analysis Homework 2 Solutions Due Thursday, February 21, 2013 [100 points] Purpose: To provide an introduction to the use of PROC MIXED

More information

Getting Started With PROC LOGISTIC

Getting Started With PROC LOGISTIC Getting Started With PROC LOGISTIC Andrew H. Karp Sierra Information Services, Inc. 19229 Sonoma Hwy. PMB 264 Sonoma, California 95476 707 996 7380 SierraInfo@aol.com www.sierrainformation.com Getting

More information

for var trstprl trstlgl trstplc trstplt trstep: reg X trust10 stfeco yrbrn hinctnt edulvl pltcare polint wrkprty

for var trstprl trstlgl trstplc trstplt trstep: reg X trust10 stfeco yrbrn hinctnt edulvl pltcare polint wrkprty for var trstprl trstlgl trstplc trstplt trstep: reg X trust10 stfeco yrbrn hinctnt edulvl pltcare polint wrkprty -> reg trstprl trust10 stfeco yrbrn hinctnt edulvl pltcare polint wrkprty Source SS df MS

More information

ALL POSSIBLE MODEL SELECTION IN PROC MIXED A SAS MACRO APPLICATION

ALL POSSIBLE MODEL SELECTION IN PROC MIXED A SAS MACRO APPLICATION Libraries Annual Conference on Applied Statistics in Agriculture 2006-18th Annual Conference Proceedings ALL POSSIBLE MODEL SELECTION IN PROC MIXED A SAS MACRO APPLICATION George C J Fernandez Follow this

More information

Apply Response Surface Analysis for Interaction of Dose Response Combine Treatment Drug Study

Apply Response Surface Analysis for Interaction of Dose Response Combine Treatment Drug Study Paper PO13 Apply Response Surface Analysis for Interaction of Dose Response Combine Treatment Drug Study Tung-Yi (Tony) Wu, Ph.D. Kos Pharmaceuticals Inc., Miami, FL ABSTRACT Combination treatments are

More information

ROBUST ESTIMATION OF STANDARD ERRORS

ROBUST ESTIMATION OF STANDARD ERRORS ROBUST ESTIMATION OF STANDARD ERRORS -- log: Z:\LDA\DataLDA\sitka_Lab8.log log type: text opened on: 18 Feb 2004, 11:29:17. ****The observed mean responses in each of the 4 chambers; for 1988 and 1989.

More information

SAS. Data Analyst Training Program. [Since 2009] 21,347+ Participants 10,000+ Brands Trainings 45+ Countries. In exclusive association with

SAS. Data Analyst Training Program. [Since 2009] 21,347+ Participants 10,000+ Brands Trainings 45+ Countries. In exclusive association with SAS Data Analyst Training Program In exclusive association with 21,347+ Participants 10,000+ Brands 1200+ Trainings 45+ Countries [Since 2009] Training partner for Who Is This Course For? Programmers Non-Programmers

More information

Tim Hunter Principal Systems Developer Output Delivery & Reporting Copyright 2004, SAS Institute Inc. All rights reserved.

Tim Hunter Principal Systems Developer Output Delivery & Reporting Copyright 2004, SAS Institute Inc. All rights reserved. What s New and Upcoming in SAS 9 ODS Tim Hunter Principal Systems Developer Output Delivery & Reporting Agenda Why ODS? What s new? What s upcoming? Q&A Why ODS? Some Isn t Good Enough Some procedures

More information

Timing Production Runs

Timing Production Runs Class 7 Categorical Factors with Two or More Levels 189 Timing Production Runs ProdTime.jmp An analysis has shown that the time required in minutes to complete a production run increases with the number

More information

Unit 6: Simple Linear Regression Lecture 2: Outliers and inference

Unit 6: Simple Linear Regression Lecture 2: Outliers and inference Unit 6: Simple Linear Regression Lecture 2: Outliers and inference Statistics 101 Thomas Leininger June 18, 2013 Types of outliers in linear regression Types of outliers How do(es) the outlier(s) influence

More information

Analyzing Discrete Choice Data on Monadic Cards

Analyzing Discrete Choice Data on Monadic Cards Paper 262-27 Analyzing Discrete Choice Data on Monadic Cards Jay Wu & Barry Zacharias, ACNielsen Vantis, San Ramon, CA ABSTRACT Although Discrete Choice Modeling typically involves multiple choice cards,

More information

Sylvain Tremblay SAS Canada

Sylvain Tremblay SAS Canada TECHNIQUES FOR MODEL SCORING ESUG Sylvain Tremblay SAS Canada APRIL 15, 2015 You are done and have a predictive model Now what? It s time to score If you are using Enterprise Miner You can then do the

More information

Getting Started with HLM 5. For Windows

Getting Started with HLM 5. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 About this Document... 3 1.2 Introduction to HLM... 3 1.3 Accessing HLM... 3 1.4 Getting Help with HLM... 3 Section 2: Accessing

More information

Using SAS/AF Software and ODS for Reporting and Analysis

Using SAS/AF Software and ODS for Reporting and Analysis Using SAS/AF Software and ODS for Reporting and Analysis Thiru Satchi Blue Cross and Blue Shield of Massachusetts, Boston, Massachusetts Edgar Mounib Management Consulting Resources, Boston, Massachusetts

More information

Understanding and accounting for product

Understanding and accounting for product Understanding and Modeling Product and Process Variation Variation understanding and modeling is a core component of modern drug development. Understanding and accounting for product and process variation

More information

SUDAAN Analysis Example Replication C6

SUDAAN Analysis Example Replication C6 SUDAAN Analysis Example Replication C6 * Sudaan Analysis Examples Replication for ASDA 2nd Edition * Berglund April 2017 * Chapter 6 ; libname d "P:\ASDA 2\Data sets\nhanes 2011_2012\" ; ods graphics off

More information

Probability Of Booking

Probability Of Booking Axis Title Web Social Analytics Air France Assignment 1 Spring 216 Shuhua Zhu Assignment 1 Question 1: CTR TCR NET REVEAVE. COSROA AVE. REV PROB COUNT 451 451 451 451 459 368 451 MAX 2.% 9.% $549,524 $1.

More information

Stata v 12 Illustration. One Way Analysis of Variance

Stata v 12 Illustration. One Way Analysis of Variance Stata v 12 Illustration Page 1. Preliminary Download anovaplot.. 2. Descriptives Graphs. 3. Descriptives Numerical 4. Assessment of Normality.. 5. Analysis of Variance Model Estimation.. 6. Tests of Equality

More information

Outliers Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised April 7, 2016

Outliers Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised April 7, 2016 Outliers Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised April 7, 206 These notes draw heavily from several sources, including Fox s Regression Diagnostics; Pindyck

More information

MAUS KPI Dashboard - Cloud

MAUS KPI Dashboard - Cloud MAUS KPI Dashboard - Cloud KPI Management This module includes the following tabs; Manage KPIs and Mange Groups, Enter KPI Data, One Page Snapshot, View KPIs and Generate Reports. Settings Manage KPIs

More information

Compartmental Pharmacokinetic Analysis. Dr Julie Simpson

Compartmental Pharmacokinetic Analysis. Dr Julie Simpson Compartmental Pharmacokinetic Analysis Dr Julie Simpson Email: julieas@unimelb.edu.au BACKGROUND Describes how the drug concentration changes over time using physiological parameters. Gut compartment Absorption,

More information

Questionnaire. (3) (3) Bachelor s degree (3) Clerk (3) Third. (6) Other (specify) (6) Other (specify)

Questionnaire. (3) (3) Bachelor s degree (3) Clerk (3) Third. (6) Other (specify) (6) Other (specify) Questionnaire 1. Age (years) 2. Education 3. Job Level 4.Sex 5. Work Shift (1) Under 25 (1) High school (1) Manager (1) M (1) First (2) 25-35 (2) Some college (2) Supervisor (2) F (2) Second (3) 36-45

More information

Experimental Design and Analysis for Psychology

Experimental Design and Analysis for Psychology oxford SAS Companion for Experimental Design and Analysis for Psychology Lynne J. Williams, Mette T. Posamentier, Betty Edelman & Hervé Abdi OXFORD UNIVERSITY PRESS Oxford University Press is a department

More information

Using SDA on the Web to Extract Data from the General Social Survey and Other Sources

Using SDA on the Web to Extract Data from the General Social Survey and Other Sources Using SDA on the Web to Extract Data from the General Social Survey and Other Sources Brett Presnell Dept. of Statistics University of Florida March 19, 2001 1 Getting the Data The SDA: Survey Documentation

More information

Paper Build your Metadata with PROC CONTENTS and ODS OUTPUT Louise S. Hadden, Abt Associates Inc.

Paper Build your Metadata with PROC CONTENTS and ODS OUTPUT Louise S. Hadden, Abt Associates Inc. Paper 1549-2014 Build your Metadata with PROC CONTENTS and ODS OUTPUT Louise S. Hadden, Abt Associates Inc. ABSTRACT Simply using an ODS destination to replay PROC CONTENTS output does not provide the

More information

INTRODUCTION MISSING VALUES

INTRODUCTION MISSING VALUES Too Many Choices! The IMPORTANCE of Rank-Ordering Independent Variables Prior to Exploratory Data Analysis Gregg Weldon, Sigma Analytics & Consulting, Inc. Data Analysts and Statisticians are constantly

More information

Psych 5741/5751: Data Analysis University of Boulder Gary McClelland & Charles Judd

Psych 5741/5751: Data Analysis University of Boulder Gary McClelland & Charles Judd Second Mid-Term Exam Multiple Regression Question A: Public policy analysts are interested in understanding how and why individuals come to develop the opinions they do of various public policy issues.

More information

ECON Introductory Econometrics Seminar 6

ECON Introductory Econometrics Seminar 6 ECON4150 - Introductory Econometrics Seminar 6 Stock and Watson EE10.1 April 28, 2015 Stock and Watson EE10.1 ECON4150 - Introductory Econometrics Seminar 6 April 28, 2015 1 / 21 Guns data set Some U.S.

More information

Human Resources (HR) Manager Reports. Generating HR Data Reports at Columbia University. Training Guide

Human Resources (HR) Manager Reports. Generating HR Data Reports at Columbia University. Training Guide Human Resources (HR) Manager Reports Generating HR Data Reports at Columbia University Training Guide I NTRODUCTION Introduction The Purpose of this Training Guide The purpose of this training guide is

More information

SUDAAN Analysis Example Replication C5

SUDAAN Analysis Example Replication C5 Analysis Example Replication C5 * Analysis Examples Replication for ASDA 2nd Edition, SAS v9.4 TS1M3 ; * Berglund April 2017 * Chapter 5 ; libname d "P:\ASDA 2\Data sets\nhanes 2011_2012\" ; ods graphics

More information

This is a quick-and-dirty example for some syntax and output from pscore and psmatch2.

This is a quick-and-dirty example for some syntax and output from pscore and psmatch2. This is a quick-and-dirty example for some syntax and output from pscore and psmatch2. It is critical that when you run your own analyses, you generate your own syntax. Both of these procedures have very

More information

Survey of Income and Program Participation 2001 Wave 8 Food Security Data File Technical Documentation and User Notes

Survey of Income and Program Participation 2001 Wave 8 Food Security Data File Technical Documentation and User Notes Survey of Income and Program Participation 2001 Wave 8 Food Security Data File Technical Documentation and User Notes Questions: Contact Mark Nord Phone: 202-694-5433 Email: marknord@ers.usda.gov. Revision

More information

SUGI 29 Statistics and Data Analysis. Paper

SUGI 29 Statistics and Data Analysis. Paper Paper 206-29 Using SAS Procedures to Make Sense of a Complex Food Store Survey Jeff Gossett, University of Arkansas for Medical Sciences, Little Rock, AR Pippa Simpson, University of Arkansas for Medical

More information

Table of content. B1 Time Task Manual

Table of content. B1 Time Task Manual Table of content Table of content... 1 Overview... 2 Configuration... 2 Prerequisites... 2 Configuration Task... 3 Configuration Time Registration... 4 Configuration Billing... 5 Configuration Permissions...

More information

STATISTICS PART Instructor: Dr. Samir Safi Name:

STATISTICS PART Instructor: Dr. Samir Safi Name: STATISTICS PART Instructor: Dr. Samir Safi Name: ID Number: Question #1: (20 Points) For each of the situations described below, state the sample(s) type the statistical technique that you believe is the

More information

+? Mean +? No change -? Mean -? No Change. *? Mean *? Std *? Transformations & Data Cleaning. Transformations

+? Mean +? No change -? Mean -? No Change. *? Mean *? Std *? Transformations & Data Cleaning. Transformations Transformations Transformations & Data Cleaning Linear & non-linear transformations 2-kinds of Z-scores Identifying Outliers & Influential Cases Univariate Outlier Analyses -- trimming vs. Winsorizing

More information

Case Study: SAS Visual Analytics Dashboard for Pollution Analysis

Case Study: SAS Visual Analytics Dashboard for Pollution Analysis Paper 1940-2016 Case Study: SAS Visual Analytics Dashboard for Pollution Analysis ABSTRACT Viraj Kumbhakarna, MUFG Union Bank, San Francisco, CA Baskar Anjappan, MUFG Union Bank, San Francisco, CA This

More information

Using Stata 11 & higher for Logistic Regression Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised March 28, 2015

Using Stata 11 & higher for Logistic Regression Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised March 28, 2015 Using Stata 11 & higher for Logistic Regression Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised March 28, 2015 NOTE: The routines spost13, lrdrop1, and extremes

More information

For Demonstrations: Automatic Data Collection So Simple The Graphs Just Appear

For Demonstrations: Automatic Data Collection So Simple The Graphs Just Appear For Demonstrations: 800.875.4243 S P C S O F T W A R E S I N C E 1 9 8 3 Automatic Data Collection So Simple The Graphs Just Appear D A T A C O L L E C T I O N / A N A L Y S I S S O F T W A R E QC-CALC

More information

Hierarchical Linear Modeling: A Primer 1 (Measures Within People) R. C. Gardner Department of Psychology

Hierarchical Linear Modeling: A Primer 1 (Measures Within People) R. C. Gardner Department of Psychology Hierarchical Linear Modeling: A Primer 1 (Measures Within People) R. C. Gardner Department of Psychology As noted previously, Hierarchical Linear Modeling (HLM) can be considered a particular instance

More information

NPP-RPP Program Year Annual Performance Report

NPP-RPP Program Year Annual Performance Report NPP-RPP 2016-17 Program Year Annual Performance Report Due Date: August 14, 2017 2016-17 APR First things first: ADOBE get the latest version and/or update. https://acrobat.adobe.com/us/en/acrobat/pdf-reader.html

More information

Integrating Market and Credit Risk Measures using SAS Risk Dimensions software

Integrating Market and Credit Risk Measures using SAS Risk Dimensions software Integrating Market and Credit Risk Measures using SAS Risk Dimensions software Sam Harris, SAS Institute Inc., Cary, NC Abstract Measures of market risk project the possible loss in value of a portfolio

More information

BI Workspaces User Guide SAP BusinessObjects Business Intelligence platform 4.0

BI Workspaces User Guide SAP BusinessObjects Business Intelligence platform 4.0 BI Workspaces User Guide SAP BusinessObjects Business Intelligence platform 4.0 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP Business ByDesign, and

More information

Elemental Time Studies

Elemental Time Studies Elemental Time Studies Elemental time studies record times for machine activities: from continuous observation of the machine for a longer period of time Machine time is divided into elements. Each element:

More information

Lanteria HR Core HR

Lanteria HR Core HR Lanteria HR 2013 - Core HR User's Guide for version 4.2.0 Copyright 2015 Lanteria Table of Contents 1 Introduction... 4 1.1 The Core HR Module Overview... 4 1.2 Terminology List... 4 2 Core HR Dashboard...

More information

Using R for Introductory Statistics

Using R for Introductory Statistics R http://www.r-project.org Using R for Introductory Statistics John Verzani CUNY/the College of Staten Island January 6, 2009 http://www.math.csi.cuny.edu/verzani/r/ams-maa-jan-09.pdf John Verzani (CSI)

More information

Economic Growth Effect on Income Inequality

Economic Growth Effect on Income Inequality Economic Growth Effect on Income Inequality Meredith Lee The College of New Jersey Department of Economics Spring 2015 Introduction Lee 2 An issue that has been continuously present in American politics

More information

Select2Perform InterView User s Guide

Select2Perform InterView User s Guide Select2Perform InterView User s Guide Table of Contents INTRODUCTION 1 Licensing 1 Competencies and Custom Questions 1 Interview Guides 1 MANAGING COMPETENCIES 2 Adding a Competency 2 Viewing a Competency

More information

+? Mean +? No change -? Mean -? No Change. *? Mean *? Std *? Transformations & Data Cleaning. Transformations

+? Mean +? No change -? Mean -? No Change. *? Mean *? Std *? Transformations & Data Cleaning. Transformations Transformations Transformations & Data Cleaning Linear & non-linear transformations 2-kinds of Z-scores Identifying Outliers & Influential Cases Univariate Outlier Analyses -- trimming vs. Winsorizing

More information

Real-Time Predictive Modeling of Key Quality Characteristics Using Regularized Regression: SAS Procedures GLMSELECT and LASSO

Real-Time Predictive Modeling of Key Quality Characteristics Using Regularized Regression: SAS Procedures GLMSELECT and LASSO Paper 8240-2016 Real-Time Predictive Modeling of Key Quality Characteristics Using Regularized Regression: SAS Procedures GLMSELECT and LASSO Jon M. Lindenauer, Weyerhaeuser Company ABSTRACT This paper

More information

TEAMS User Guide. Requisitions. First Edition

TEAMS User Guide. Requisitions. First Edition TEAMS User Guide Requisitions First Edition 2014 Prologic Technology Systems, Inc. All rights reserved. Prologic, the Prologic logo, TEAMS, TEAMS Business Administration, TEAMS Student Accounting, TEAMS

More information

The Multivariate Regression Model

The Multivariate Regression Model The Multivariate Regression Model Example Determinants of College GPA Sample of 4 Freshman Collect data on College GPA (4.0 scale) Look at importance of ACT Consider the following model CGPA ACT i 0 i

More information

The Dummy s Guide to Data Analysis Using SPSS

The Dummy s Guide to Data Analysis Using SPSS The Dummy s Guide to Data Analysis Using SPSS Univariate Statistics Scripps College Amy Gamble April, 2001 Amy Gamble 4/30/01 All Rights Rerserved Table of Contents PAGE Creating a Data File...3 1. Creating

More information

Where do the titles or footnotes go when using PROC SGPLOT in ODS PDF?

Where do the titles or footnotes go when using PROC SGPLOT in ODS PDF? SESUG 2015 Paper P2P CC124 Where do the titles or footnotes go when using PROC SGPLOT in ODS PDF? Julie Liu, Kaiser Permanente Los Angeles Medical Center, Los Angeles, CA ABSTRACT Normally people would

More information

Oracle Hyperion Planning for Interactive Users

Oracle Hyperion Planning for Interactive Users Oracle University Contact Us: 1.800.529.0165 Oracle Hyperion Planning 11.1.2 for Interactive Users Duration: 0 Days What you will learn This course is designed to teach you how to use Planning. It includes

More information

Solutions Implementation Guide

Solutions Implementation Guide Solutions Implementation Guide Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

3 Ways to Improve Your Targeted Marketing with Analytics

3 Ways to Improve Your Targeted Marketing with Analytics 3 Ways to Improve Your Targeted Marketing with Analytics Introduction Targeted marketing is a simple concept, but a key element in a marketing strategy. The goal is to identify the potential customers

More information

DRAFT Using XMLMAP to Read Data Documented by a Data Documentation Initiative (DDI) File DRAFT

DRAFT Using XMLMAP to Read Data Documented by a Data Documentation Initiative (DDI) File DRAFT DRAFT Using XMLMAP to Read Data Documented by a Data Documentation Initiative (DDI) File DRAFT Larry Hoyle Policy Research Institute, The University of Kansas Abstract Data Documentation Initiative files

More information

Purpose: To document a product and it s functionality for educating users. Page 1 of 34

Purpose: To document a product and it s functionality for educating users. Page 1 of 34 Purpose: To document a product and it s functionality for educating users. Page 1 of 34 ONEVIEW Welcome to the user guide for help and information about the ONEView application. This will provide information

More information

EmpowerTime Supervisor User Guide Table of Contents

EmpowerTime Supervisor User Guide Table of Contents EmpowerTime Supervisor User Guide Table of Contents Supervisor Quick Guide. 1-2 Timecard Edits...3 Daily Tasks - Dashboard...4 Absences 5-6 Time Off Requests. 7-8 Approving Employee Timecards.9-10 Exceptions...

More information

Analytics Cloud Service Administration Guide

Analytics Cloud Service Administration Guide Analytics Cloud Service Administration Guide Version 17 November 2017 Contents About This Guide... 5 About Primavera Analytics... 5 About Primavera Data Warehouse... 6 Overview of Oracle Business Intelligence...

More information

Manufacturing Extension Pack

Manufacturing Extension Pack Manufacturing Extension Pack Contents About This Guide...2 How to use this Guide...2 Conventions used in this Guide...2 Program Reference...3 Aggregate Bill of Materials Report...3...3 System Keys...3...3

More information

USDA FOREST SERVICE LONGLEAF PINE PROGENY TEST REVIEW AND ANALYSIS

USDA FOREST SERVICE LONGLEAF PINE PROGENY TEST REVIEW AND ANALYSIS USDA FOREST SERVICE LONGLEAF PINE PROGENY TEST REVIEW AND ANALYSIS C. Dana Nelson 1,2, Barbara S. Crane 3, James H. Roberds 2 1 USDA Forest Service, Southern Research Station, Saucier, MS, USA 2 Forest

More information

Risk Management User Guide

Risk Management User Guide Risk Management User Guide Version 17 December 2017 Contents About This Guide... 5 Risk Overview... 5 Creating Projects for Risk Management... 5 Project Templates Overview... 5 Add a Project Template...

More information

The. Summarize Procedure. Brawijaya Professional Statistical Analysis BPSA MALANG Jl. Kertoasri 66 Malang (0341)

The. Summarize Procedure. Brawijaya Professional Statistical Analysis BPSA MALANG Jl. Kertoasri 66 Malang (0341) The Summarize Procedure Brawijaya Professional Statistical Analysis BPSA MALANG Jl. Kertoasri 66 Malang (0341) 580342 The Summarize Procedure The Summarize procedure produces report tables containing summary

More information

CROSSTAB Example #8. This example illustrates the variety of hypotheses and test statistics now available on the TEST statement in CROSSTAB.

CROSSTAB Example #8. This example illustrates the variety of hypotheses and test statistics now available on the TEST statement in CROSSTAB. CROSSTAB Example #8 SUDAAN Statements and Results Illustrated Stratum-specific Chi-square (CHISQ) Test Stratum-adjusted Cochran-Mantel-Haenszel (CMH) Test ANOVA-type (ACMH) Test ALL Test option DISPLAY

More information

IBM SPSS Forecasting 19

IBM SPSS Forecasting 19 IBM SPSS Forecasting 19 Note: Before using this information and the product it supports, read the general information under Notices on p. 108. This document contains proprietary information of SPSS Inc,

More information

Eclipse Remote Order Entry. Release 9.0.2

Eclipse Remote Order Entry. Release 9.0.2 Eclipse Remote Order Entry Release 9.0.2 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates

More information

SECTION 11 ACUTE TOXICITY DATA ANALYSIS

SECTION 11 ACUTE TOXICITY DATA ANALYSIS SECTION 11 ACUTE TOXICITY DATA ANALYSIS 11.1 INTRODUCTION 11.1.1 The objective of acute toxicity tests with effluents and receiving waters is to identify discharges of toxic effluents in acutely toxic

More information

Eclipse Work Order Management. Release (Eterm)

Eclipse Work Order Management. Release (Eterm) Eclipse Work Order Management Release 8.6.4 (Eterm) Legal Notices 2008 Activant Solutions Inc. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Activant and the Activant

More information

CHAPTER 11 ASDA ANALYSIS EXAMPLES REPLICATION-SUDAAN

CHAPTER 11 ASDA ANALYSIS EXAMPLES REPLICATION-SUDAAN CHAPTER 11 ASDA ANALYSIS EXAMPLES REPLICATION-SUDAAN 10.0.1 GENERAL NOTES ABOUT ANALYSIS EXAMPLES REPLICATION These examples are intended to provide guidance on how to use the commands/procedures for analysis

More information

Propensity Scores for Multiple Treatments

Propensity Scores for Multiple Treatments C O R P O R A T I O N Propensity Scores for Multiple Treatments A Tutorial on the MNPS Command for Stata Users Matthew Cefalu, Maya Buenaventura For more information on this publication, visit www.rand.org/t/tl170z1

More information

Canadian Payroll Processing

Canadian Payroll Processing Canadian Payroll Processing Detailed Agenda Course Description New Combined Time Entry Method Quick Pay vs Manual Pay Employer Pay Calculations Shift Premium/Differential Charge Out Rates Web ROE New Combined

More information

Quick Start Guide (for PacifiCorp Customers) January, 2011

Quick Start Guide (for PacifiCorp Customers) January, 2011 Quick Start Guide (for PacifiCorp Customers) January, 2011 Contents Chapter 1 Signing On to Energy Profiler Online 2 Chapter 2 Overview of Analysis Capabilities.. 3 Chapter 3 Selecting Accounts/Groups.....

More information

The Multivariate Dustbin

The Multivariate Dustbin UCLA Statistical Consulting Group (Ret.) Stata Conference Baltimore - July 28, 2017 Back in graduate school... My advisor told me that the future of data analysis was multivariate. By multivariate he meant...

More information

AKCIS AT A GLANCE WHAT IS AKCIS? WHAT CAN AKCIS DO FOR YOU? Mat-Su Career Services FSM 101 (907)

AKCIS AT A GLANCE WHAT IS AKCIS? WHAT CAN AKCIS DO FOR YOU? Mat-Su Career Services FSM 101 (907) Mat-Su Career Services FSM 101 (907) 746-9319 WHAT IS AKCIS? AKCIS AT A GLANCE The Alaska Career Information System (AKCIS) is a comprehensive career guidance system that provides information and career

More information

Chapter One Introduction to Inventory

Chapter One Introduction to Inventory Chapter One Introduction to Inventory This chapter introduces Inventory, its features, the organization of the User s Guide, common toolbar buttons and frequently used keyboard and report commands. Introduction...

More information

Supervisor Web Services Training Guide

Supervisor Web Services Training Guide Supervisor Web Services Training Guide NOVAtime 4000 SaaS Software as a Service Updated June 2012 Supervisor Web Services Training Overview Logging On to SWS Login Screen Icons / Categories A endance Category

More information

Workshop in Applied Analysis Software MY591. Introduction to SPSS

Workshop in Applied Analysis Software MY591. Introduction to SPSS Workshop in Applied Analysis Software MY591 Introduction to SPSS Course Convenor (MY591) Dr. Aude Bicquelet (LSE, Department of Methodology) Contact: A.J.Bicquelet@lse.ac.uk Contents I. Introduction...

More information

Technical Description of SIPP Job Identification Number Editing in the SIPP Panels

Technical Description of SIPP Job Identification Number Editing in the SIPP Panels Technical Description of SIPP Job Identification Number Editing in the 1990-1993 SIPP Panels Martha H. Stinson U.S. Census Bureau July, 2003 1 Introduction SIPP data collection has made significant quality

More information

CONDITIONAL LOGIC IN THE DATA STEP

CONDITIONAL LOGIC IN THE DATA STEP CONDITIONAL LOGIC IN THE DATA STEP Conditional Logic When processing data records, in many instances, the result to be obtained for the record depends on values of variable(s) within the record. Example:

More information

PeopleSoft NW RUG. How Can Oracle Business Intelligence Publisher Serve Your PS 9.2 Reporting Needs? Presented by:

PeopleSoft NW RUG. How Can Oracle Business Intelligence Publisher Serve Your PS 9.2 Reporting Needs? Presented by: PeopleSoft NW RUG How Can Oracle Business Intelligence Publisher Serve Your PS 9.2 Reporting Needs? Presented by: Randy Johnson Shahin Islam SpearMC Consulting Agenda Introductions SpearMC Solutions Overview

More information

4 BUILDING YOUR FIRST MODEL. L4.1 Building Your First Simulation Model. Knowing is not enough; we must apply. Willing is not enough; we must do.

4 BUILDING YOUR FIRST MODEL. L4.1 Building Your First Simulation Model. Knowing is not enough; we must apply. Willing is not enough; we must do. Pro, Second Edition L A B 4 BUILDING YOUR FIRST MODEL Knowing is not enough; we must apply. Willing is not enough; we must do. Johann von Goethe In this lab we build our first simulation model using Pro.

More information

Lifecycle Management for SAP BusinessObjects User Guide

Lifecycle Management for SAP BusinessObjects User Guide Lifecycle Management for SAP BusinessObjects User Guide SAP BusinessObjects XI 3.1 Sevice Pack 3 windows Copyright 2010 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign,

More information

PROC REPORT og ODS. Georg Morsing

PROC REPORT og ODS. Georg Morsing PROC REPORT og ODS Georg Morsing PROC REPORT og ODS 1. ODS EXCEL Options 2. PROC REPORT kode 3. Style={} 4. TAGATTR Links til mere information ODS provides table templates that define the structure of

More information

Post-Estimation Commands for MLogit Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised February 13, 2017

Post-Estimation Commands for MLogit Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised February 13, 2017 Post-Estimation Commands for MLogit Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised February 13, 2017 These notes borrow heavily (sometimes verbatim) from Long &

More information