楼主: hanszhu
57622 460

[下载]硕士学位论文 农村居民食物消费结构变动及其对粮食需求影响的实证分析 [推广有奖]

251
SASCHEN 发表于 2006-4-26 04:24:00

[下载]Resampling Methods: Concepts, Applications, and Justification

50042.pdf (171.43 KB)


Introduction


In recent years many emerging statistical analytical tools, such as exploratory data analysis (EDA), data visualization, robust procedures, and resampling methods, have been gaining attention among psychological and educational researchers. However, many researchers tend to embrace traditional statistical methods rather than experimenting with these new techniques, even though the data structure does not meet certain parametric assumptions. Three factors contribute to this conservative practice. First, newer methods are generally not included in statistics courses, and as a result, the concepts of these newer methods seem obscure to many people. Second, in the past most software developers devoted efforts to program statistical packages for conventional data analysis. Even if researchers are aware of these new techniques, the limited software availability hinders them from implementing them. Last, even with awareness of these concepts and access to software, some researchers hesitate to apply "marginal" procedures. Traditional procedures are perceived as founded on solid theoretical justification and empirical substantiation, while newer techniques face harsh criticisms and seem to be lacking theoretical support.
This article concentrates on one of the newer techniques, namely, resampling, and attempts to address the above issues. First, concepts of different types of resampling will be introduced with simple examples. Next, software applications for resampling are illustrated. Contrary to popular beliefs, many resampling tools are available in standard statistical applications such as SAS and SyStat. Resampling can also be performed in spreadsheet programs such as Excel. Last but not least, arguments for and against resampling are discussed. I propose that there should be more than one way to construe probabilistic inferences and that counterfactual reasoning is a viable means to justify use of resampling as an inferential tool.

[此贴子已经被作者于2006-4-26 4:28:17编辑过]

252
hanszhu 发表于 2006-4-26 12:30:00
Multiple Imputation for Missing Data

Overview

SAS/STAT software, Version 8, introduces the experimental MI and MIANALYZE procedures for creating and analyzing multiply imputed data sets for incomplete multivariate data. Multiple imputation provides a useful strategy for dealing with data sets with missing values. Instead of filling in a single value for each missing value, Rubin's (1987) multiple imputation procedure replaces each missing value with a set of plausible values that represent the uncertainty about the right value to impute. These multiply imputed data sets are then analyzed by using standard procedures for complete data and combining the results from these analysis. No matter which complete-data analysis is used, the process of combining results from different imputed data sets is essentially the same. This results in statistically valid inferences that properly reflect the uncertainty due to missing values.

The MI procedure is a multiple imputation procedure that creates multiply imputed data sets for incomplete p-dimensional multivariate data. It uses methods that incorporate appropriate variability across m imputations. Once the m complete data sets are analyzed using standard SAS/STAT procedures, PROC MIANALYZE can be used to generate valid statistical inferences about these parameters by combining the results.

Introduction

Most SAS statistical procedures exclude observations with any missing variable values from an analysis. These observations are called incomplete cases. While using only complete cases has its simplicity, you lose information in the incomplete cases. This approach also ignores the possible systematic difference between the complete cases and incomplete cases, and the resulting inference may not be applicable to the population of all cases, especially with a smaller number of complete cases.

Some SAS procedures use all the available cases in an analysis, that is, cases with available information. For example, PROC CORR estimates a variable mean by using all cases with nonmissing values on this variable, ignoring the possible missing values in other variables. PROC CORR also estimates a correlation by using all cases with nonmissing values for this pair of variables. This may make better use of the available data, but the resulting correlation matrix may not be positive definite.

Another strategy is single imputation, in which you substitute a value for each missing value. Standard statistical procedures for complete data analysis can then be used with the filled-in data set. For example, each missing value can be imputed from the variable mean of the complete cases, or it can be imputed from the mean conditional on observed values of other variables. This approach treats missing values as if they were known in the complete-data analysis. Single imputation does not reflect the uncertainty about the predictions of the unknown missing values, and the resulting estimated variances of the parameter estimates will be biased towards zero.

Instead of filling in a single value for each missing value, a multiple imputation procedure (Rubin 1987) replaces each missing value with a set of plausible values that represent the uncertainty about the right value to impute. The multiply imputed data sets are then analyzed by using standard procedures for complete data and combining the results from these analysis. No matter which complete-data analysis is used, the process of combining the results from different data sets is essentially the same.

SAS/STAT procedures implements multiple imputation inferences in three distinct phases:

  • Create m multiply imputed complete data sets using the MI procedure.
  • Analyze the m complete data sets by using standard procedures such as PROC REG or PROC GLM.
  • Generate valid statistical inferences about the parameters of interest by combining the results using the MIANALYZE procedure.


Figure1. The Multiple Imputation Process using SAS Software

Imputation Mechanisms

The SAS multiple imputation procedures assume that the missing data are missing at random (MAR), that is, the probability that an observation is missing may depend on the observed values but not the missing values. These procedures also assume that the parameters q of the data model and the parameters f of the missing data indicators are distinct. That is, knowing the values of q does not provide any additional information about f, and vice versa. If both MAR and the distinctness assumptions are satisfied, the missing data mechanism is said to be ignorable

The MI procedure provides three methods for imputing missing values and the method of choice depends on the type of missing data pattern. For monotone missing data patterns, either a parametric regression method that assumes multivariate normality or a nonparametric method that uses propensity scores is appropriate. For an arbitrary missing data pattern, a Markov chain Monte Carlo (MCMC) method that assumes multivariate normality can be used.

Regression Method

In the regression method, a regression model is fitted for each variable with missing values, with the previous variables as covariates. Based on the resulting model, a new regression model is then simulated and is used to impute the missing values for each variable.

Propensity Score Method

The propensity score is the conditional probability of assignment to a particular treatment given a vector of observed covariates. In the propensity score method, a propensity score is generated for each variable with missing values to indicate the probability of the observation being missing. The observations are then grouped based on these propensity scores, and an approximate Bayesian bootstrap imputation is applied to each group.

MCMC Method

In MCMC, one constructs a Markov chain long enough for the distribution of the elements to stabilize to a common, stationary distribution. By repeatedly simulating steps of the chain, it simulates draws from the distribution of interest.

In Bayesian inference, information about unknown parameters is expressed in the form of a posterior distribution. MCMC has been applied as a method for exploring posterior distributions in Bayesian inference. That is, through MCMC, one can simulate the entire joint distribution of the unknown quantities and obtain simulation-based estimates of posterior parameters that are of interest.

Assuming that the data are from a multivariate normal distribution, data augmentation is applied to Bayesian inference with missing data by repeating a series of imputation and posterior steps. These two steps are iterated long enough for the results to be reliable for a multiply imputed data set (Schafer 1997). The goal is to have the iterates converge to their stationary distribution and then to simulate an approximately independent draw of the missing values.

Release 8.2

Release 8.2 of SAS/STAT software includes the second experimental releases of the MI and MIANALYZE procedures. Additions to PROC MI include the TRANSFORM statement to transform variables before performing the imputation, autocorrelation and iteration plots, a monotone-data MCMC method to impute just enough values to achieve a monotone missing pattern for the imputed data, and the EM statement to derive the MLE and related EM results.

For more Information

For more information, refer to the paper "Multiple Imputation for Missing Data: Concepts and New Development" and the documentation on the MI and MIANALYZE procedures, which is available for downloading from the SAS/STAT Documentation section on this Community site.

References

Rubin, D. B. (1987), Multiple Imputation for Nonresponse in Surveys, New York: John Wiley & Sons, Inc.

Schafer, J. L. (1997), Analysis of Incomplete Multivariate Data, New York: Chapman and Hall

Download pdf version.

253
hanszhu 发表于 2006-4-26 12:33:00
Analysis of incomplete multivariate data from repeated measurement experiments.

Crepeau H, Koziol J, Reid N, Yuh YS.

This paper analyses two sets of data that consist of repeated measurements with missing data. The missing observations always occur at the end of the series of repeated measurements. The score test for multivariate normal data is used to compare treatment groups; if the original data are not multivariate normal they are replaced by expected normal scores.

254
hanszhu 发表于 2006-4-26 12:35:00

Multivariate Analysis of Incomplete Mapped Data.

Stéphane Dray, Nathalie Pettorelli, and Daniel Chessel

50110.pdf (405.31 KB)

[此贴子已经被作者于2006-4-26 12:40:26编辑过]

255
hanszhu 发表于 2006-4-26 12:42:00

[下载]LISREL: ANALYSIS OF MULTIVARIATE DATA WITH MISSING VALUES

LISREL: ANALYSIS OF MULTIVARIATE DATA WITH MISSING VALUES

50112.pdf (206.95 KB)

[此贴子已经被作者于2006-4-26 12:44:46编辑过]

256
hanszhu 发表于 2006-4-26 12:49:00

STAT 598A: Statistical Analysis with Missing Data

Lectures: TTH 12:00PM - 1:15PM, UNIV 019

257
hanszhu 发表于 2006-4-26 13:01:00

BIOSTAT 2065: Analysis of Incomplete Data

Instructor: Gong Tang

Course syllabus
Lecture notes and supplements:

September 1, 2005
  • Notes
  • Assignment(Word) Answer of HW#1

    September 6, 2005
  • Notes

    September 8, 2005
  • Will go over some examples, no extra notes.

    September 13 & 15, 2005
  • Notes

    Past work on problem 2.13 Answer of HW#2
    September 20 & 22, 2005
  • Notes Solution of HW#3
    September 27, 2005
  • Notes

    September 29, 2005
  • Notes Solution of HW#4
    October 4, 2005
  • Notes
    October 6, 2005
  • Notes Solution of HW#5
    October 11, 2005
  • Notes
    October 13 & 18, 2005
  • Notes Solution of HW#6
    October 20, 2005
  • Notes Proof of Louis' formula

    October 25, 2005
  • Notes Historic Midterm Exam

    November 1, 2005
  • Notes

    November 8, 2005
  • Midterm exam and answer
    November 8, 2005
  • Topics for the final project Teams
    November 10, 2005
  • Notes
    November 15, 2005
  • Notes
    November 22, 2005
  • An example to run OSWALD
    December 1, 2005
  • Three papers on testing whether data are MCAR:
  • Testing for Random Dropouts in Repeated Measurement Data. P. Diggle, Biometrics, Volumn 45, 1255-1258, 1989
  • A Test of Missing Completely at Random for Multivariate Data with Missing Values. R.J.A. Little, JASA, Vol. 83, 1198-1202, 1988.
  • A Test of Missing Completely at Random for Generalized Estimating Equations with Missing Values. H.Chen and R.J.A. Little, Biometrika, Vol. 86, 1-13, 1999.
  • 258
    statax 发表于 2006-4-26 13:14:00

    thanks a lot

    the upstairs are so kind...

    [em01]

    Use it, or lose it!

    259
    hanszhu 发表于 2006-4-26 21:48:00

    260
    hanszhu 发表于 2006-4-26 21:48:00

    您需要登录后才可以回帖 登录 | 我要注册

    本版微信群
    加好友,备注jltj
    拉您入交流群
    GMT+8, 2025-12-25 15:35