11 Pages

Chapter11a

Course: STAT 3201, Fall 2005
School: LSU
Rating:
 
 
 
 
 

Word Count: 2634

Document Preview

Chapter EXST3201 11a Chapter 11 : Model checking and refinement Geaghan Fall 2005: Page 1 This chapter is primarily concerned with diagnostics for individual observations. Previously, we have been concerned primarily with evaluating the model (ANOVA source table) and the individual variables, their significance (extra ss and various tests), multicolinearity (VIF and Condition number), relative measures of...

Register Now

Unformatted Document Excerpt

Coursehero >> Louisiana >> LSU >> STAT 3201

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Chapter EXST3201 11a Chapter 11 : Model checking and refinement Geaghan Fall 2005: Page 1 This chapter is primarily concerned with diagnostics for individual observations. Previously, we have been concerned primarily with evaluating the model (ANOVA source table) and the individual variables, their significance (extra ss and various tests), multicolinearity (VIF and Condition number), relative measures of variation (standardized regression coefficient). We have also looked at some tests and graphic tools for evaluating the assumptions. So far we have mentioned outliers, evaluated with residual plots and box plots, but have not developed any formal tools or diagnostics. That is one of the main themes of this chapter. An example: Alcohol metabolism in men and women The study investigates first-pass metabolism of alcohol that is metabolized in the stomach before reaching the bloodstream. To measure this, investigators administered equal amounts of alcohol orally and intravenously on a series of randomly selected days. The differences in blood alcohol on these days provides a measure of how much alcohol is metabolized by the stomach (i.e firstpass metabolism). In addition to this variable the amount of a key gastric enzyme alcohol dehydrogenase was measured. This variable is called gastric AD activity. Variables in the analysis included dummy variables for sex and for subjects categorized as alcoholic. Partial output for this problem is given below. The complete program and handout are provided online. The data is plotted below. The M and F are males and females respectively and the lower case letters are alcoholics. Plot of METABOLIZED*GASTRIC. Symbol is value of group. METABOLIZED | | m 12 + | | | | | 10 + | m | | | | 8+ | | | | | 6+ m | | | | m | 4+ m | M | | Mm f | M m m f | 2+ M f | f M F f | f | f f | F F | ff mf f f 0+ f | ---+----------+----------+----------+----------+----------+----------+----------+----------+----------+----------+-0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0 5.5 GASTRIC NOTE: 1 obs hidden. EXST3201 Chapter 11a Analysis of Variance Source Model Error Corrected Total DF 7 24 31 Parameter Estimate -1.65966 2.51416 1.46572 2.55210 -2.25171 -1.45874 -1.67344 1.19867 Geaghan Fall 2005: Page 2 The analysis, done with PROC REG, is presented below. Sum of Squares 181.34065 37.75404 219.09469 Mean Square 25.90581 1.57309 F Value 16.47 Pr > F <.0001 Variable Intercept GASTRIC Female Alcoholic FEMxALC ALCxGastric FEMxGastric FEMxALCxGastric DF 1 1 1 1 1 1 1 1 Parameter Estimates Standard Error t Value 0.99965 -1.66 0.34337 7.32 1.33255 1.10 1.94599 1.31 4.39370 -0.51 1.05286 -1.39 0.62020 -2.70 2.99783 0.40 Pr > |t| 0.1099 <.0001 0.2823 0.2021 0.6130 0.1786 0.0126 0.6928 95% Confidence Limits -3.72283 0.40351 1.80548 3.22284 -1.28453 4.21597 -1.46421 6.56842 -11.31986 6.81644 -3.63173 0.71425 -2.95347 -0.39341 -4.98854 7.38588 The overall test of the model indicates a joint significance. The only single variable in the model that is significant is GASTRIC, indicating that the gastric activity does indeed correlate to first-pass metabolism. There are many variables in the model, and it is possible that removing one or more of these would reveal other significant correlations. Formal techniques for model selection will be discussed in Chapter 12. For the moment, accept that the only significant variables in this model, after variables selection, are gastric and the gastric by sex interaction. When an interaction is significant both of its main effects are usually included in the model. Therefore, sex will be included and the final model is MODEL METABOLIZED = GASTRIC FEMALE FEMALExGASTRIC;. This model is fitted and the residuals plotted below. It appears there may be problems with outliers. Plot of resid*yhat. Symbol is value of group. resid | | 4+ | M | | | | 3+ | | | | | 2+ | | | | F F | m 1+ M | M | m M | F f F | m | F 0 +--------f-----F----F-------------------------M------------------------------------------------------------------------------| F | F m | f | FF F | -1 + | MF | | m M | M | -2 + | | | M | | -3 + | --+----------+----------+----------+----------+----------+----------+----------+----------+----------+----------+----------+-0 1 2 3 4 5 6 7 8 9 10 11 yhat NOTE: 2 obs hidden. EXST3201 Chapter 11a Parameter Estimates Variable Intercept GASTRIC Female FEMxGastric DF 1 1 1 1 Parameter Estimate -1.18577 2.34387 0.98850 -1.50692 Standard Error 0.71168 0.28015 1.07239 0.55914 Geaghan t Value -1.67 8.37 0.92 -2.70 Pr > |t| 0.1068 <.0001 0.3645 0.0118 Fall 2005: Page 3 95% Confidence Limits -2.64359 0.27205 1.77001 2.91773 -1.20820 3.18519 -2.65227 -0.36158 Dealing with influential observations Outliers are a serious issue in least squares analysis. While the analysis is robust to some departures from the assumptions of X measured without error and normality, the analysis can be seriously and adversely influenced by the presence of outliers. To make an evaluation on each observation we will need some additional diagnostics. Your textbook also suggests a strategy for dealing with outliers. The book first points out the utility of some simple graphics like scatter plots and residual plots in developing an initial model. The book also suggests three general objectives paraphrased below. 1) The model should estimate parameters that address research questions. Obviously, if the model does not address research issues, the model is not really worth pursuing. 2) Potentially confounding variables should be included. Confounding, in the statistical sense, refers to closely related variables whose effects in a model often cannot be distinguished. The authors are suggesting that variables suspected of influencing the variable of interest should be included in the model. 3) The model should take into consideration aspects seen in the initial graphics. If the graphics display curvature or nonhomogeneous variance these issues should be addressed in the model development. EXST3201 Chapter 11a Geaghan Fall 2005: Page 4 In order to assist with these decisions and developments we need some new diagnostics. The residual plot for the alcohol metabolism (above and from the book below) has two points that are potentially outliers. Outliers are points that often appear as if they do not fit in with the other observations in the data set because, graphically, they appear to be way out of line with the other points in the data set. The books version of the residual plot shows two observations (#31 and #32) that appear disjoint and separate from the remaining points. There is often a temptation to simply remove an observation that does not fit in with the other observations. However, this action should only be done after careful consideration. The basic question is, does this observation belong in the population we targeted or does it belong in some other population? The strategy suggested by the book above will help in making the decision, but better tools are needed. According to the strategy outlined in the book, if removal of the observation does not change the results of the analysis then it probably belongs in our target population and should not be removed. If the observation does influence our results, is there some reason to assume that it erroneously got included in our sample. Is it a coding error or a case that is influenced by some unusual factors we did not intend to include in our study? To aid in answering these questions we will consider some additional diagnostics. 1) Leverage values leverage values are produced in the process of doing the matrix algebra for multiple regression. In these calculations the predicted values of Yi are given by X(XX)-1XY where the first portion X(XX)-1X is known as the hat matrix and its main diagonal are the hat values, denoted hii and commonly referred to as leverage values. EXST3201 Chapter 11a Geaghan Fall 2005: Page 5 Leverage values are between 1/n and 1 and sum to p/n, where p is the number of parameters in the model. Larger values are taken as an indicator of unusual Xi values. Note that a large value of hii does not necessarily mean that the observation is a bad value, only that it is unusual. 2) Studentized residuals It is not easy to look at residuals and determine which ones are excessively large. The values of residuals depend on the scale of the Y values, so they can be in the hundreds, thousands or thousandths. In order to create values on a recognizable scale, values are standardized to a Z scale or t scale (Z = (Yi ) / ). The mean of the residuals is zero and the variances is estimated by the MSE (mean squared error), so the calculation is SemiStudent = ei / e MSE. A better calculation is given by Student = i . The use of the leverage MSE(1-h ii ) value scales the variance so that values near the mean of X have smaller variances than those more distant from the center of the X values. This latter calculation is the one used in SAS. Residuals are assumed to follow a normal distribution, so Studentized residuals should follow a t-distribution or, for large samples, a z distribution. As a result the empirical rules apply; for large samples about 2/3 of the points should be between 1, 95% between 2 and 99% between 2.6. 3) Deleted studentized residuals (not discussed in the text) these values are similar to studentized residuals, but the residuals are calculated as deviations from a regression line that is calculated without the observation present. These residuals, denoted ei(i) are calculated the same way as the Studentized residuals and have similar properties and distributions. 4) Cooks distance measure (D) this value is calculated as Cook ' s D = (Y Y j =1 j n j (i ) )2 . It is a pMSE measure of influence that is the change in the model calculated with an observation first included and then excluded. This statistic measures the overall change in the fit across all observations when each point is excluded. Cooks D values greater than 1 are considered large. As with the leverage values, large values are not necessarily bad values, but they do have considerable influence on the outcome of the calculations. . It is also a measure of influence. MSE(i ) hii This statistic measures the change in the individual Yhat value when the observation is excluded. DIFFITS values greater than 1 are considered large. 5) DFFITS the measure is calculated as DFFITSi = Yi Yi (i ) EXST3201 Chapter 11a Geaghan Fall 2005: Page 6 SAS produces all of these values in PROC REG and PROC GLM. An output statement was used it PROC REG to create these values for the Alcohol metabolism The experiment. program and listing are produced below. PROC REG DATA=Metabolism; Title2 'Fit of metabolized on indicator variables'; MODEL metabolized = gastric female FEMxGastric / clb alpha=0.05; output out=next1 r=resid p=yhat lclm=lclm uclm=uclm lcl=lcli ucl=ucli student=student rstudent=rstudent cookd=cookd h=leverage dffits=dffits; RUN; proc print data=next1; var metabolized gastric female FEMxGastric yhat resid student rstudent cookd leverage dffits; RUN; Chapter 11 : Alcohol metabolism in men and women Fit of metabolized on indicator variables with REG FEMx Gastric 1.00000 1.60000 1.50000 2.20000 1.10000 1.20000 0.90000 0.80000 1.50000 0.90000 1.60000 1.70000 1.70000 2.20000 0.80000 2.00000 3.00000 2.20000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 Obs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 METABOLIZED 0.6000 0.6000 1.5000 0.4000 0.1000 0.2000 0.3000 0.3000 0.4000 1.0000 1.1000 1.2000 1.3000 1.6000 1.8000 2.0000 2.5000 2.9000 1.5000 1.9000 2.7000 3.0000 3.7000 0.3000 2.5000 2.7000 3.0000 4.0000 4.5000 6.1000 9.5000 12.3000 GASTRIC 1.00000 1.60000 1.50000 2.20000 1.10000 1.20000 0.90000 0.80000 1.50000 0.90000 1.60000 1.70000 1.70000 2.20000 0.80000 2.00000 3.00000 2.20000 1.30000 1.20000 1.40000 1.30000 2.70000 1.10000 2.30000 2.70000 1.40000 2.20000 2.00000 2.80000 5.20000 4.10000 Female 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 yhat 0.6397 1.1418 1.0582 1.6440 0.7234 0.8071 0.5560 0.4723 1.0582 0.5560 1.1418 1.2255 1.2255 1.6440 0.4723 1.4766 2.3136 1.6440 1.8613 1.6269 2.0957 1.8613 5.1427 1.3925 4.2051 5.1427 2.0957 3.9708 3.5020 5.3771 11.0024 8.4241 resid -0.03968 -0.54185 0.44185 -1.24402 -0.62337 -0.60707 -0.25598 -0.17229 -0.65815 0.44402 -0.04185 -0.02554 0.07446 -0.04402 1.32771 0.52337 0.18643 1.25598 -0.36127 0.27312 0.60435 1.13873 -1.44269 -1.09249 -1.70514 -2.44269 0.90435 0.02925 0.99802 0.72293 -1.50237 3.87589 student -0.03472 -0.46192 0.37667 -1.10056 -0.54070 -0.52288 -0.22646 -0.15441 -0.56106 0.39281 -0.03567 -0.02181 0.06358 -0.03894 1.18997 0.45396 0.19825 1.11115 -0.31925 0.24287 0.53110 1.00631 -1.24695 -0.97829 -1.46571 -2.11128 0.79474 0.02514 0.85960 0.62663 -1.82581 3.71413 rstudent -0.03410 -0.45533 0.37082 -1.10489 -0.53375 -0.51598 -0.22259 -0.15170 -0.55408 0.38680 -0.03503 -0.02142 0.06244 -0.03824 1.19924 0.44743 0.19481 1.11601 -0.31407 0.23875 0.52418 1.00655 -1.25997 -0.97752 -1.49791 -2.26100 0.78937 0.02469 0.85547 0.61970 -1.91022 5.12052 cookd 0.00004 0.00316 0.00210 0.04264 0.00706 0.00556 0.00181 0.00102 0.00466 0.00543 0.00002 0.00001 0.00006 0.00005 0.06048 0.00498 0.00637 0.04346 0.00352 0.00225 0.00886 0.03501 0.03456 0.04039 0.04136 0.09908 0.01985 0.00001 0.01502 0.00934 0.96070 1.16725 leverage 0.10415 0.05596 0.05596 0.12343 0.08809 0.07523 0.12343 0.14592 0.05596 0.12343 0.05596 0.05917 0.05917 0.12343 0.14592 0.08809 0.39331 0.12343 0.12150 0.13242 0.11165 0.12150 0.08165 0.14442 0.07150 0.08165 0.11165 0.07165 0.07519 0.08688 0.53548 0.25287 dffits -0.01163 -0.11086 0.09028 -0.41460 -0.16589 -0.14717 -0.08352 -0.06270 -0.13490 0.14514 -0.00853 -0.00537 0.01566 -0.01435 0.49569 0.13906 0.15685 0.41877 -0.11680 0.09327 0.18583 0.37432 -0.37569 -0.40161 -0.41566 -0.67418 0.27984 0.00686 0.24393 0.19115 -2.05094 2.9790 EXST3201 Chapter 11a Geaghan Fall 2005: Page 7 Interpretation of these statistics is often aided by a graphic presentation. Graphics and the program statements that produced them are given below. The reference lines are values suggested by the text and other sources. Chapter 11 : Alcohol metabolism in men and women Various plot with group variable Plot of student*SUBJECT. Symbol is value of group. 4+ | M | | | | | 2 +-------------------------------------------------------------------------------------------------| | student | F F m | M M | F m M | f F F m 0+ f FFFF M | FF m | f FF F | M | F m | M | M -2 + M | | | | | | -4 + ---+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+-1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 SUBJECT Chapter 11 : Alcohol metabolism in men and women Various plot with group variable Plot of rstudent*SUBJECT. Symbol is value of group. rstudent | | 6+ | | M | | 4+ | | | | 2 +-------------------------------------------------------------------------------------------------| | F F m | M MM | f F F mm 0+ f F FFFF F M | f FFF F m | M | F m | M -2 + M | M | | | -4 + | ---+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+-1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 SUBJECT EXST3201 Chapter 11a Chapter 11 : Alcohol metabolism in men and women Various plot with group variable Geaghan Fall 2005: Page 8 Plot of leverage*SUBJECT. Symbol is value of group. leverage | | 0.6 + | | | M 0.5 +-------------------------------------------------------------------------------------------------| | | 0.4 + F | | | 0.3 + | | M | 0.2 + | | F F M | F F F F Fmm m 0.1 + f F F m M | F m MM MMM | ff F FFF | 0.0 + | ---+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+-1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 SUBJECT Chapter 11 : Alcohol metabolism in men and women Various plot with group variable Plot of cookd*SUBJECT. Symbol is value of group. cookd | | 1.25 + | | M | | 1.00 +----------------------------------------------------------------------------------------------------------------------------| M | | | 0.75 + | | | | 0.50 + | | | | 0.25 + | | | M | F F F m m M M 0.00 +f f f F F F F F F F F F F F F m m m M M M M | -+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 SUBJECT Chapter 11 : Alcohol metabolism in men and women Various plot with group variable Plot of dffits*SUBJECT. Symbol is value of group. dffits | | 3+ M | | | | 2+ | | | | 1 +-------------------------------------------------------------------------------------------------| | | F F m | F FF m M MM 0+ f f FF FFFF m M | f FF F m | F mMM | M | -1 + | | | | -2 + ...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

LSU - STAT - 3201
EXST3201 Chapter 11b Chapter 11 : Model checking and refinementGeaghanFall 2005: Page 1An example: Blood-brain barrier study on rats This study investigates the permeability of the blood-brain barrier to medication. Rats were given cells that w
LSU - STAT - 3201
EXST7034 : Regression Techniques Multiple RegressionDiagnostic variables and criteriaGeaghan Page 1Criteria for the interpretation of selected statistics from the SAS output A) General regression diagnostics n 1 2 1) Adjusted R2 : Radj = 1 n p
LSU - STAT - 3201
EXST3201 KentuckyDerby01 Homework assignment 8.GeaghanFall 2005: Page 11 *; 2 * Speed of Kentucky Derby winner and track conditions *; 3 * for the years 1896 to 2000 *; 4 **; 5 6 dm'log;clear;output;clear'; 7 options nodate nocenter nonumber p
LSU - STAT - 3201
EXST3201 Chapter 12a Chapter 12 : Variable selectionGeaghanFall 2005: Page 1An example: State SAT scores In 1982 there was concern for scores of the Scholastic Aptitude Test (SAT) scores that varied greatly between states. Researchers decided
LSU - STAT - 3201
EXST3201 Chapter 13a Chapter 13 : Experimental designGeaghanFall 2005: Page 1Linear Models Yij = + i + ij the basic completely randomized design, or one-way ANOVA d.f. Source Treatments t 1 t(n 1) Error Error structure (random effects) Ne
LSU - STAT - 3201
EXST3201 Chapter 13bGeaghanFall 2005: Page 1Chapter 13 : The Meadowfoam experiment, a CRD factorial Linear Models Yij = + 1i + 2 j + 1 2ij + ijk This is a completely randomized design with a 2 by 6 factorial treatment arrangement (two-way
LSU - STAT - 3201
EXST7005 - Statistical Techniques I23a ANOVA Factorial.prz - 1-6Statistical Techniques IEXST7005The Factorial Treatment ArrangementAlso known as &quot;two-way&quot; ANOVAThis analysis has two (or more) Treatments, for example treatment A with two leve
LSU - STAT - 3201
EXST3201 Chapter 13d Chapter 13 a few final notesGeaghanFall 2005: Page 1The textbook has a good image demonstrating types of additivity. Make sure you understand this concept and how to test it.Discussion points from the text Randomized blo
LSU - STAT - 3201
EXST3201 Chapter 14aGeaghanFall 2005: Page 1Chapter 14 : Multifactor studies without replication Linear Models Yij = + i + j + ij This is a randomized block design with no replication beyond the treatment by block interaction. The treatmen
LSU - STAT - 3201
EXST3201 Chapter 14bGeaghanFall 2005: Page 1Chapter 14 : Multifactor studies without replication Effects of Ozone with Sulfur Dioxide and Water Stress on Soybean Yield This study involved two different soybean cultivars. The 30 possible combina
LSU - STAT - 3201
EXST3201 Assignment 2Page 1The objective of this assignment is continuing practice with the SAS software. In addition to the SAS programming components used for assignment 1, this assignment will require 1) input of an external data set, 2) start
LSU - STAT - 3201
EXST3201 Assignment 3Page 1The objective of this assignment is continuing practice with the SAS software. For this assignment the SAS programming will require; 1) input of an external data set, (ex0524.csv). Store this dataset in C:|\TEMP\. 2) St
LSU - STAT - 3201
EXST3201 Assignment 4Page 1The objective of this assignment is to apply some of the post-ANOVA applications covered this week. On assignment 2, the Tyrannosaurus Rex analysis, the bones listed as Bone1 through BONE12 are the following:Indication
LSU - STAT - 3201
EXST3201 Assignment 5Page 1The objective of this assignment is to run a regression analysis. We have not covered SAS regression output yet, so we will fit an initial program today and embellish this program next week. Therefore, make sure you sav
LSU - STAT - 3201
EXST3201 Assignment 6Page 1The objective of this assignment is to run a regression analysis and to do some selected tests of hypothesis. You should already have a program that does the following. a) Inputs 3 variables (DATE INTERVAL DURATION) fro
LSU - STAT - 3201
EXST3201 Assignment 7Page 1The objective of this assignment is to run a MULTIPLE regression analysis with selected diagnostics. I have modified the data set by adding the city to the observations. You may use the following input statements.data
LSU - STAT - 3201
EXST3201 Assignment 8Page 1The objective of this assignment is to run a MULTIPLE regression with linear and quadratic terms and interaction. You may use the following input statements. Note that if you use power terms or interactions with PROC RE
LSU - STAT - 3201
EXST3201 Assignment 9Page 1Today, we have a bit of a challenge. At a minimum you should fit an Analysis of Covariance to the data (description on the next page). The dataset is ex0920.csv. You may use PROC GLM or PROC REG. If you use PROC REG you
LSU - STAT - 3201
EXST3201 Assignment 10Page 1The dataset for today is ex1123.csv. I recommend you use PROC REG. The data step is as follows. data AirPollution; length city $ 18; infile input1 missover DSD dlm=&quot;,&quot; firstobs=2; input CITY $ MORT PRECIP EDUC NONWHITE
LSU - STAT - 3201
EXST3201 Assignment 11Page 1-The dataset for today is ex1320.csv. I recommend you use PROC MIXED or PROC GLM (or both) for this example. There are no random effects, so the problem is appropriate for either. data ACTSCORES; infile input1 missover
LSU - STAT - 3201
EXST3201 SpockTrial01bPage 173 Title2 'Analysis of SPOCK versus others'; 74 data Jury; set jury; 75 if judge = 'SPOCK'S' then JustSpock = 'SPOCK' ; else JustSpock='Other'; 76 run; NOTE: There were 46 observations read from the data set WORK.JURY
LSU - STAT - 3201
EXST3201 Mousefeed03 3 4 5 6 7 8 910Page 1/* Examine differences among the following 6 treatments N/N85 fed normally before weaning and 85 kcal/wk after N/R40 fed normally before weaning and 40 kcal/wk after N/R50 fed normally before weaning an
LSU - STAT - 3201
Air PollutionAssignment 10Page 11 *; 2 * Air pollution and mortality *; 3 * Data on mortality from all causes for the years *; 4 * 1959 to 1961. *; 5 **; 6 7 dm'log;clear;output;clear'; 8 options nodate nocenter nonumber ps=512 ls=99 nolabel; 9
LSU - STAT - 3201
EXST3201 Chapter 13cGeaghanFall 2005: Page 1Linear Models Yij = + i + j + ij + ijk This is a Randomized Block Design (RBD) with a single factor treatment arrangement (2 levels) which are fixed.1 **; 2 * Pygmalion effect study *; 3 * In th
LSU - STAT - 3201
EXST3201 Chapter 13cGeaghanFall 2005: Page 1Linear Models Yij = + 1i + ij + 2 k + 1 2ik + ijkl This is a Split-plot Design with a fixed single factor treatment arrangement in the main plot and a 2 by 3 factorial subplot.1 **; 2 * Seawee
LSU - STAT - 3201
EXST3201 Chapter 7GeaghanFall 2005: Page 1Important points from Chapter 7 (Simple Linear Regression) Chapter 7 deals primarily with the fitting and testing of hypotheses about simple linear regression.Y(X, Y)b0b1XUnderstand the interp
LSU - STAT - 3201
EXST3210 - Statistical Techniques October 26, 2005 Exam 2 GeaghanNAME _ Page 1READ CAREFULLY. Give an answer in the form of a number or numeric expression where possible. Show calculations for possible partial credit. Use a critical value of =
LSU - STAT - 3201
EXST3201 Hubble01Page 11 /* 2 The Big Bang 3 Edwin Hubble discovered a relationship between a nebula's distance 4 from earth and the velocity with which it was moving away from earth. 5 The data in this analysis is for the first 24 nebulae Hubbl
LSU - STAT - 7083
EXST7034 : Regression Techniques Polynomial Regression1 *; 2 * EXST7034 Homework Example *; 3 * Problem from Neter, Wasserman &amp; Kuttner 1989, Table 9.1 *; 4 **; 5 6 OPTIONS LS=133 PS=256 NOCENTER NODATE NONUMBER; 7 8 DATA ONE; INFILE CARDS MISSOVER;
LSU - STAT - 7083
EXST7083 Spring 2007Writing AssignmentPage 1The attached papers are from The American Statistician. Vardeman , S.B and Max D. Morris. 2003. Statistics and Ethics: Some Advice for Young Statisticians. The American Statistician. 57(1):21-26 Kirk,
LSU - STAT - 7005
EXPERIMENTAL STATISTICS 7005 February 19, 2004Name _ EXAM 1 : Page 1 All sections : GeaghanRead Carefully. Give an answer in the form of a number or numeric expression where possible. Show all calculations. Use a value of 0.05 for any tests if i
LSU - STAT - 7005
EXPERIMENTAL STATISTICS 7005 April 1, 2004Name _ EXAM 2 : Page 1 All sections : GeaghanRead Carefully. Give an answer in the form of a number or numeric expression where possible. Show all calculations for possible partial credit. Us a value of 0
LSU - STAT - 7005
EXPERIMENTAL STATISTICS 7005 April 29, 2004EXAM 3Name _ All sections : GeaghanRead Carefully. Give an answer in the form of a number or numeric expression where possible. Show all calculations for possible partial credit. Use a value of 0.05 fo
LSU - STAT - 7005
17p ttest-supplementTwo sample t-tests with SASPage 1Using the SAS PROC TTEST; 1) An F test is provided to test H0: 12 = 22. The F is calculated as2 larger of S1 , S2 2 F= 2 smaller of S1 , S2 . This test should be examined first to decide whi
LSU - STAT - 7005
EXST 7005 Statistical Methods I Syllabus Department of Experimental Statistics School of Agriculture, Louisiana State University Spring 2006Course Description (EXST 7005): EXST 7005 Statistical Techniques I (4) F,S 3 hrs. lecture; 2 hrs. lab. Prer
LSU - NR - 313
SRAC Publication No. 439August 2000PRVIPet Turtle ProductionC. Greg Lutz* Turtle farming has been practiced for decades in Louisiana. The industry developed to produce baby turtles, specifically red-ear sliders (Trachemys scripta elegans), f
LSU - NR - 6
SRAC Publication No. 439August 2000PRVIPet Turtle ProductionC. Greg Lutz* Turtle farming has been practiced for decades in Louisiana. The industry developed to produce baby turtles, specifically red-ear sliders (Trachemys scripta elegans), f
Virginia Tech - ANSWERS - 2707
Virginia Tech Middleware CA Client Certificate Request FormReturn the completed form to IMS, Campus 0214, or FAX to 231-3583The VT Middleware Certificate Authority (MCA) is used to issue application specific digital certificates that allow clients
Virginia Tech - ANSWERS - 2986
Participation Requirements for VT WSUS Downstream and Sidestream Server Administrators v1.2This document specifies the responsibilities of the administrators of downstream and sidestream (DS and SS) WSUS servers. To maintain the security and stabili
Virginia Tech - ANSWERS - 2849
Application for Virginia Tech Class 1 Server CertificateReturn completed form to Rhonda Randel, IRM, Campus 0214 Phone: 231-4245 Fax: 231-8649Please Print Clearly Applicants Full Name Applicants 9-digit ID Number (ID# is required for USERID verifi
Virginia Tech - ETD - 08242003
ETD-db: Item Temporarily RestrictedThis item has been taken ofine by Virginia Tech Library or Graduate School. This restriction is temporary, and the item will be automatically made available again shortly. For more information, contact Gail McMilla
Virginia Tech - ETD - 05312002
Classical Element Feedback Control for Spacecraft Orbital ManeuversBo J. NaaszThesis submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulllment of the requirements for the degree ofMaster of Science
Virginia Tech - ETD - 12092003
Internal Torques and Forces in Gyrostats with Magnetically Suspended Rotorsby Marcus Carl PresslThesis submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulllment of the requirements for the degree of
Virginia Tech - ETD - 12232003
Mixed Control Moment Gyro and Momentum Wheel Attitude Control StrategiesC. Eugene Skelton IIThesis submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulllment of the requirements for the degree ofMas
Virginia Tech - ETD - 06142004
Decentralized Coordinated Attitude Control of a Formation of Spacecraftby Matthew C. VanDykeThesis submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulllment of the requirements for the degree ofMas
Virginia Tech - ETD - 122999
Formation Flying Performance Measures for Earth-Pointing MissionsSteven P. HughesThesis submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulllment of the requirements for the degree ofMaster of Scie
Virginia Tech - ETD - 07242001
A Nonlinear Magnetic Controller for Three-Axis Stability of NanosatellitesKristin L. MakovecThesis submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulllment of the requirements for the degree ofMas
Virginia Tech - ETD - 063099
Spacecraft Attitude Tracking ControlMatthew R. LongThesis submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulllment of the requirements for the degree ofMaster of Science in Aerospace Engineering
Virginia Tech - ETD - 05302002
Design, Analysis, Fabrication, and Testing of a Nanosatellite StructureCraig L. StevensThesis submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulllment of the requirements for the degree ofMaster o
Virginia Tech - PHIL - 2
Virginia Tech - AOE - 4994
Virginia Tech Department of Aerospace and Ocean Engineering AOE 4994 Undergraduate Research Final Report Alternative Methods of Spacecraft Control Using Space Systems Simulation Laboratory and VT-CAVEMichael Shoemaker May 7, 20031IntroductionT
Virginia Tech - AOE - 4994
AIAA 0422682CONTROL OF SPACECRAFT SIMULATORS USING IMMERSIVE VIRTUAL ENVIRONMENTSMichael A. Shoemaker Virginia Polytechnic Institute and State University, Blacksburg, VA 24061The 2004 AIAA Region I-MA Student Conference April 1618, 2004/Blacksbur
Virginia Tech - GYPSYMOTH - 9
Virginia Tech - ENTO - 9
Virginia Tech - FLL - 09
Office of International Research, Education, and DevelopmentVIRGINIA POLYTECHNIC INSTITUTE AND STATE UNIVERSITY1060 Litton Reaves Hall (0334) Blacksburg, Virginia 24061 USA Office phone: (540) 231-6338 Fax: (540) 231-5164 http:/www.oired.vt.edu
Virginia Tech - FLL - 09
VIRGINIA TECH STUDY ABROAD PROGRAM LIABILITY AGREEMENT I, _, am a student at Virginia Polytechnic Institute and State University (or known as Virginia Tech) and have agreed to participate in a study abroad program from __ until _ in _ (the program).
Virginia Tech - FLL - 09
Citizenship expectations and responsibilities for faculty members and students attending the Center for European Studies and Architecture (CESA). Residence and study at the Center for European Studies and Architecture requires a willingness on the pa
Virginia Tech - CSGRAD - 3
A Literature Survey on the Design of Speech Interface to 3D ApplicationsSeonho Kim (haebang@vt.edu)1. IntroductionMore and more virtual reality applications are using speech interfaces because they have obvious advantages over other user interfac
Virginia Tech - HW - 2
CS5704 SOFTWARE ENGINEERING HW#2904-06-9603 Seonho Kim shk@vt.eduFigure 3-1. Class diagramCustomer name : String phone : String add(name, phone) +owner 1 * +p urcha sed Reservati on d ate : DateShow name : String +show 1Subscription Series s
Virginia Tech - SSIMUL - 1
CS 5224ASSIGNMENT 1Given on: Feb. 6 Due on: Feb. 20Spring 2003A Burger King fast food restaurant serves its customers as a multiple-server multiple-line queuing system. A first-come-first-serve queue forms in front of each of the three cashier
Virginia Tech - SSIMUL - 2
CS 5224Given: March 11, 2003Assignment 215%Spring 2003Due: March 25, 2003A computer system consists of three networked service facilities: Macintosh, NeXTstation, and LaserJet Printer. Three groups of personal computer (PC) users remotely di