没有合适的资源?快使用搜索试试~ 我知道了~
首页mplus 8 用户手册 Chapter3 回归和路径分析视图示例.pdf
mplus 8 用户手册 Chapter3 回归和路径分析视图示例.pdf
需积分: 50 887 浏览量
更新于2023-03-03
评论
收藏 166KB PDF 举报
以下是版本 8 Mplus 用户指南的摘录。第 3 章 - 第 13 章包括 250 多个示例。这些示例还包含在 Mplus DVD 上以及生成数据的相应蒙特卡罗模拟设置中。 第一章:导言 第 2 章:开始使用 Mplus 第 3 章:回归和路径分析视图示例 第四章:探索性因素分析视图示例 第五章:确认因子分析和结构方程建模视图示例 第 6 章:生长建模、生存分析和 N=1 时间序列分析视图示例 第 7 章:具有横截面数据视图示例的混合建模 第 8 章:采用纵向数据视图示例的混合建模 第 9 章:具有复杂调查数据视图示例的多层建模 第10章:多层次混合建模视图示例 第11章:缺少数据建模和贝叶斯估计视图示例 第12章:蒙特卡洛模拟研究查看示例 第13章:示例:特殊功能 第14章:特殊建模问题 第 15 章:标题、数据、变量和定义命令 第16章:分析命令 第17章:MODEL命令 第 18 章:输出、保存数据和绘图命令 第19章:蒙特卡洛命令 第20章:Mplus语言摘要 引用/索引
资源详情
资源评论
资源推荐

Examples: Regression And Path Analysis
19
CHAPTER 3
EXAMPLES: REGRESSION AND
PATH ANALYSIS
Regression analysis with univariate or multivariate dependent variables
is a standard procedure for modeling relationships among observed
variables. Path analysis allows the simultaneous modeling of several
related regression relationships. In path analysis, a variable can be a
dependent variable in one relationship and an independent variable in
another. These variables are referred to as mediating variables. For both
types of analyses, observed dependent variables can be continuous,
censored, binary, ordered categorical (ordinal), counts, or combinations
of these variable types. In addition, for regression analysis and path
analysis for non-mediating variables, observed dependent variables can
be unordered categorical (nominal).
For continuous dependent variables, linear regression models are used.
For censored dependent variables, censored-normal regression models
are used, with or without inflation at the censoring point. For binary and
ordered categorical dependent variables, probit or logistic regression
models are used. Logistic regression for ordered categorical dependent
variables uses the proportional odds specification. For unordered
categorical dependent variables, multinomial logistic regression models
are used. For count dependent variables, Poisson regression models are
used, with or without inflation at the zero point. Both maximum
likelihood and weighted least squares estimators are available.
All regression and path analysis models can be estimated using the
following special features:
Single or multiple group analysis
Missing data
Complex survey data
Random slopes
Linear and non-linear parameter constraints
Indirect effects including specific paths
Maximum likelihood estimation for all outcome types
Bootstrap standard errors and confidence intervals

CHAPTER 3
20
Wald chi-square test of parameter equalities
For continuous, censored with weighted least squares estimation, binary,
and ordered categorical (ordinal) outcomes, multiple group analysis is
specified by using the GROUPING option of the VARIABLE command
for individual data or the NGROUPS option of the DATA command for
summary data. For censored with maximum likelihood estimation,
unordered categorical (nominal), and count outcomes, multiple group
analysis is specified using the KNOWNCLASS option of the
VARIABLE command in conjunction with the TYPE=MIXTURE
option of the ANALYSIS command. The default is to estimate the
model under missing data theory using all available data. The
LISTWISE option of the DATA command can be used to delete all
observations from the analysis that have missing values on one or more
of the analysis variables. Corrections to the standard errors and chi-
square test of model fit that take into account stratification, non-
independence of observations, and unequal probability of selection are
obtained by using the TYPE=COMPLEX option of the ANALYSIS
command in conjunction with the STRATIFICATION, CLUSTER, and
WEIGHT options of the VARIABLE command. The
SUBPOPULATION option is used to select observations for an analysis
when a subpopulation (domain) is analyzed. Random slopes are
specified by using the | symbol of the MODEL command in conjunction
with the ON option of the MODEL command. Linear and non-linear
parameter constraints are specified by using the MODEL
CONSTRAINT command. Indirect effects are specified by using the
MODEL INDIRECT command. Maximum likelihood estimation is
specified by using the ESTIMATOR option of the ANALYSIS
command. Bootstrap standard errors are obtained by using the
BOOTSTRAP option of the ANALYSIS command. Bootstrap
confidence intervals are obtained by using the BOOTSTRAP option of
the ANALYSIS command in conjunction with the CINTERVAL option
of the OUTPUT command. The MODEL TEST command is used to test
linear restrictions on the parameters in the MODEL and MODEL
CONSTRAINT commands using the Wald chi-square test.
Graphical displays of observed data and analysis results can be obtained
using the PLOT command in conjunction with a post-processing
graphics module. The PLOT command provides histograms,
scatterplots, plots of individual observed and estimated values, and plots
of sample and estimated means and proportions/probabilities. These are

Examples: Regression And Path Analysis
21
available for the total sample, by group, by class, and adjusted for
covariates. The PLOT command includes a display showing a set of
descriptive statistics for each variable. The graphical displays can be
edited and exported as a DIB, EMF, or JPEG file. In addition, the data
for each graphical display can be saved in an external file for use by
another graphics program.
Following is the set of regression examples included in this chapter:
3.1: Linear regression
3.2: Censored regression
3.3: Censored-inflated regression
3.4: Probit regression
3.5: Logistic regression
3.6: Multinomial logistic regression
3.7: Poisson regression
3.8: Zero-inflated Poisson and negative binomial regression
3.9: Random coefficient regression
3.10: Non-linear constraint on the logit parameters of an unordered
categorical (nominal) variable
Following is the set of path analysis examples included in this chapter:
3.11: Path analysis with continuous dependent variables
3.12: Path analysis with categorical dependent variables
3.13: Path analysis with categorical dependent variables using the
Theta parameterization
3.14: Path analysis with a combination of continuous and
categorical dependent variables
3.15: Path analysis with a combination of censored, categorical, and
unordered categorical (nominal) dependent variables
3.16: Path analysis with continuous dependent variables,
bootstrapped standard errors, indirect effects, and confidence
intervals
3.17: Path analysis with a categorical dependent variable and a
continuous mediating variable with missing data*
3.18: Moderated mediation with a plot of the indirect effect

CHAPTER 3
22
* Example uses numerical integration in the estimation of the model.
This can be computationally demanding depending on the size of the
problem.
EXAMPLE 3.1: LINEAR REGRESSION
TITLE: this is an example of a linear regression
for a continuous observed dependent
variable with two covariates
DATA: FILE IS ex3.1.dat;
VARIABLE: NAMES ARE y1-y6 x1-x4;
USEVARIABLES ARE y1 x1 x3;
MODEL: y1 ON x1 x3;
In this example, a linear regression is estimated.
TITLE: this is an example of a linear regression
for a continuous observed dependent
variable with two covariates
The TITLE command is used to provide a title for the analysis. The title
is printed in the output just before the Summary of Analysis.
DATA: FILE IS ex3.1.dat;
The DATA command is used to provide information about the data set
to be analyzed. The FILE option is used to specify the name of the file
that contains the data to be analyzed, ex3.1.dat. Because the data set is
in free format, the default, a FORMAT statement is not required.
VARIABLE: NAMES ARE y1-y6 x1-x4;
USEVARIABLES ARE y1 x1 x3;
The VARIABLE command is used to provide information about the
variables in the data set to be analyzed. The NAMES option is used to
assign names to the variables in the data set. The data set in this
example contains ten variables: y1, y2, y3, y4, y5, y6, x1, x2, x3, and
x4. Note that the hyphen can be used as a convenience feature in order
to generate a list of names. If not all of the variables in the data set are
used in the analysis, the USEVARIABLES option can be used to select a
subset of variables for analysis. Here the variables y1, x1, and x3 have

Examples: Regression And Path Analysis
23
been selected for analysis. Because the scale of the dependent variable
is not specified, it is assumed to be continuous.
MODEL: y1 ON x1 x3;
The MODEL command is used to describe the model to be estimated.
The ON statement describes the linear regression of y1 on the covariates
x1 and x3. It is not necessary to refer to the means, variances, and
covariances among the x variables in the MODEL command because the
parameters of the x variables are not part of the model estimation.
Because the model does not impose restrictions on the parameters of the
x variables, these parameters can be estimated separately as the sample
values. The default estimator for this type of analysis is maximum
likelihood. The ESTIMATOR option of the ANALYSIS command can
be used to select a different estimator.
EXAMPLE 3.2: CENSORED REGRESSION
TITLE: this is an example of a censored
regression for a censored dependent
variable with two covariates
DATA: FILE IS ex3.2.dat;
VARIABLE: NAMES ARE y1-y6 x1-x4;
USEVARIABLES ARE y1 x1 x3;
CENSORED ARE y1 (b);
ANALYSIS: ESTIMATOR = MLR;
MODEL: y1 ON x1 x3;
The difference between this example and Example 3.1 is that the
dependent variable is a censored variable instead of a continuous
variable. The CENSORED option is used to specify which dependent
variables are treated as censored variables in the model and its
estimation, whether they are censored from above or below, and whether
a censored or censored-inflated model will be estimated. In the example
above, y1 is a censored variable. The b in parentheses following y1
indicates that y1 is censored from below, that is, has a floor effect, and
that the model is a censored regression model. The censoring limit is
determined from the data. The default estimator for this type of analysis
is a robust weighted least squares estimator. By specifying
ESTIMATOR=MLR, maximum likelihood estimation with robust
standard errors is used. The ON statement describes the censored
剩余23页未读,继续阅读















安全验证
文档复制为VIP权益,开通VIP直接复制

评论0