Learn About Ordered Logit Regression in R with Data from the General Social Survey (2016)

Total Page:16

File Type:pdf, Size:1020Kb

Learn About Ordered Logit Regression in R with Data from the General Social Survey (2016) Learn About Ordered Logit Regression in R With Data From the General Social Survey (2016) © 2019 SAGE Publications, Ltd. All Rights Reserved. This PDF has been generated from SAGE Research Methods Datasets. SAGE SAGE Research Methods Datasets Part 2019 SAGE Publications, Ltd. All Rights Reserved. 1 Learn About Ordered Logit Regression in R With Data From the General Social Survey (2016) Student Guide Introduction This dataset example introduces ordered logit regression. This technique allows researchers to evaluate whether a categorical variable with three or more ordered categories is a function of one or more independent variables. This example describes ordered logit, discusses the assumptions underlying it, and shows how to estimate and interpret ordered logit models. We illustrate ordered logit using a subset of data from the 2016 General Social Survey (GSS) (http://gss.norc.org/). Specifically, we test whether having children influences the employment status of women. An analysis like this allows researchers to evaluate factors that influence labor force status, which may be useful in policy designs. What Is Ordered Logit? Ordered logit models explain variation in a categorical variable that consists of three or more ordered categories as a function of one or more independent variables. Categories must only be ordered (e.g., lowest to highest, weakest to strongest, strongly agree to strongly disagree)—the method does not require that the distance between the categories be equal. Typically, the values of such variables are scored sequentially starting at 0 or 1, but the method only requires that the values follow some recognizable order. Ordered logit models are typically used when the dependent variable has three to seven ordered categories. More Page 2 of 18 Learn About Ordered Logit Regression in R With Data From the General Social Survey (2016) SAGE SAGE Research Methods Datasets Part 2019 SAGE Publications, Ltd. All Rights Reserved. 1 than that, and researchers often turn to ordinary least squares (OLS) regression, while if the dependent variable only has two categories, the ordered logit model reduces to a simple binary logit model. Ordered logit is one example from the family of generalized linear models (GLMs). GLMs connect a linear combination of independent variables and estimated parameters—often called the linear predictor—to a dependent variable using a link function. The link function typically involves some sort of nonlinear transformation, which in the case of ordered logit means that the probabilities that a given observation in the dataset falls into each of the categories of the dependent variable are nonlinear functions of the independent variables. For example, in the binary logistic regression, we model the probability of the outcome variable falling into one of the two categories as a function of the linear combination of the independent variables. But probability is a value between 0 and 1; while the linear combination of the independent variables can take any real number, so we need a nonlinear function to compress the value of the linear combination into the region between 0 and 1, which is the logistic function. The parameters of GLMs are typically estimated using maximum likelihood estimation (MLE). Because ordered logit models are estimated via MLE, it is best if the dataset has a sufficiently large number of observations. Just how many is open to debate, but in his book Regression Models for Categorical and Limited Dependent Variables (SAGE, 1997), J. Scott Long suggests trying to meet two criteria: (1) have at least 100 observations total and (2) have at least 10 observations for each coefficient estimated in the model. In simple terms, MLE accomplishes the same objective as OLS does for standard regression. MLE is an iterative process that approximates estimates for the coefficients that maximize the fit of the model to the sample of data. By maximizing fit, MLE also minimizes the unexplained variance in the dependent variable. Page 3 of 18 Learn About Ordered Logit Regression in R With Data From the General Social Survey (2016) SAGE SAGE Research Methods Datasets Part 2019 SAGE Publications, Ltd. All Rights Reserved. 1 When computing statistical tests, it is customary to define the null hypothesis (H0) to be tested. In ordered logit, the standard null hypothesis is that each coefficient is equal to zero. The actual coefficient estimates will not be exactly equal to zero in any particular sample of data, simply due to random chance in sampling. The t-tests conducted to test each individual coefficient are designed to help determine whether the coefficients are different enough from zero to be declared statistically significant. “Different enough” is typically defined as producing a test statistic with a level of statistical significance or p-value that is less than .05. This would lead us to reject the null hypothesis (H0) that the coefficient in question equals zero. Assumptions Behind the Method Nearly every statistical model or test relies on some underlying assumptions, and they are all affected by the mix of data you happen to have. Different textbooks present the assumptions for an ordered logit model in different ways. Here are the key factors to consider when estimating an ordered logit: • The dependent variable must consist of ordered categories. • The model is correctly specified (e.g., we have the right independent variables in the model properly measured). • The individual residuals are independent of each other and follow a logistic distribution. • The effect of a given independent variable on the latent dependent variable is the same across all thresholds. This is sometimes called the parallel regression assumption or the proportional odds assumption. It simply means that we only estimate one coefficient for each independent variable rather than having that coefficient estimate change as we move from one category of the dependent variable to another. • Because it is generally estimated via MLE, ordered logit regression requires moderate to large sample sizes. Page 4 of 18 Learn About Ordered Logit Regression in R With Data From the General Social Survey (2016) SAGE SAGE Research Methods Datasets Part 2019 SAGE Publications, Ltd. All Rights Reserved. 1 Estimating an Ordered Logit Model One way to understand the ordered logit model is to imagine that there is a continuous, but unobserved, dependent variable that is a linear function of an independent variable. Let’s call that latent dependent variable Y* and the observed independent variable X. We do not observe Y*, but we do observe Y as a categorical variable. Which category of Y a case falls into depends on whether Y* crosses a given threshold. Suppose we have a dependent variable Y with categories labeled A, B, and C that we believe is affected by values of an independent variable named X. We might arbitrarily select category A as the baseline category. If we then estimate an ordered logit model, we will estimate an intercept and slope that describes how X is related to the probability of an observation being in Category B versus A and another intercept and slope that describes how X is related to the probability of an observation being in Category C versus A. In other words, an ordered logit model where Y takes on three values is similar to simultaneously estimating two simple binary logit models. We say “similar” because the parameter estimates of an ordered logit model are constrained (appropriately so) by the requirement that the probability of an observation being in Categories A, B, or C must sum to 1. Because of this restriction, if we know how Category B compares to A and how Category C compares to A, we know by definition how Category B compares to Category C. Figure 1 illustrates this in the simple case where Y only takes on two values, coded 0 for those voting for Romney for U.S. President in 2012 and 1 for those voting for Obama. Figure 1 shows a latent, or unobserved, propensity of voting for Obama on the y-axis as Y*. This propensity is a linear function of X. At any given value for X, there is a probability distribution representing possible values for Y*. Because the area under any probability distribution sums to 1, at any given value Page 5 of 18 Learn About Ordered Logit Regression in R With Data From the General Social Survey (2016) SAGE SAGE Research Methods Datasets Part 2019 SAGE Publications, Ltd. All Rights Reserved. 1 of X, the estimated probability of someone voting for Obama is captured by the proportion of the probability distribution that falls above the threshold dividing Y* into those two groups. That proportion of the distribution is shown in blue in Figure 1. For a logit model, the distribution is assumed to be logistic. If the distribution were assumed to be normal, we would estimate the model using probit rather than logit. Figure 1: Illustration of the Latent Variable Interpretation of a Simple Logit Model With a Single Threshold and Two Categories for the Dependent Variable. Figure 2 shows what happens when we have three ordered categories rather than two. Figure 2 still represents a latent variable Y* on the y-axis as a linear function of X. However, Y* is now divided by two thresholds into three observed Page 6 of 18 Learn About Ordered Logit Regression in R With Data From the General Social Survey (2016) SAGE SAGE Research Methods Datasets Part 2019 SAGE Publications, Ltd. All Rights Reserved. 1 categories. At any given value of X, the proportion of the probability distribution that falls below the first threshold (shown as white) represents the probability of falling into the first category. The proportion of the probability distribution that falls between the two thresholds (shown in red) represents the probability of falling into the second category.
Recommended publications
  • Ologit — Ordered Logistic Regression
    Title stata.com ologit — Ordered logistic regression Description Quick start Menu Syntax Options Remarks and examples Stored results Methods and formulas References Also see Description ologit fits ordered logit models of ordinal variable depvar on the independent variables indepvars. The actual values taken on by the dependent variable are irrelevant, except that larger values are assumed to correspond to “higher” outcomes. Quick start Ordinal logit model of y on x1 and categorical variables a and b ologit y x1 i.a i.b As above, and include interaction between a and b and report results as odds ratios ologit y x1 a##b, or With bootstrap standard errors ologit y x1 i.a i.b, vce(bootstrap) Analysis restricted to cases where catvar = 0 using svyset data with replicate weights svy bootstrap, subpop(if catvar==0): ologit y x1 i.a i.b Menu Statistics > Ordinal outcomes > Ordered logistic regression 1 2 ologit — Ordered logistic regression Syntax ologit depvar indepvars if in weight , options options Description Model offset(varname) include varname in model with coefficient constrained to 1 constraints(constraints) apply specified linear constraints SE/Robust vce(vcetype) vcetype may be oim, robust, cluster clustvar, bootstrap, or jackknife Reporting level(#) set confidence level; default is level(95) or report odds ratios nocnsreport do not display constraints display options control columns and column formats, row spacing, line width, display of omitted variables and base and empty cells, and factor-variable labeling Maximization maximize options control the maximization process; seldom used collinear keep collinear variables coeflegend display legend instead of statistics indepvars may contain factor variables; see [U] 11.4.3 Factor variables.
    [Show full text]
  • Logit and Ordered Logit Regression (Ver
    Getting Started in Logit and Ordered Logit Regression (ver. 3.1 beta) Oscar Torres-Reyna Data Consultant [email protected] http://dss.princeton.edu/training/ PU/DSS/OTR Logit model • Use logit models whenever your dependent variable is binary (also called dummy) which takes values 0 or 1. • Logit regression is a nonlinear regression model that forces the output (predicted values) to be either 0 or 1. • Logit models estimate the probability of your dependent variable to be 1 (Y=1). This is the probability that some event happens. PU/DSS/OTR Logit odelm From Stock & Watson, key concept 9.3. The logit model is: Pr(YXXXFXX 1 | 1= , 2 ,...=k β ) +0 β ( 1 +2 β 1 +βKKX 2 + ... ) 1 Pr(YXXX 1= | 1 , 2k = ,... ) 1−+(eβ0 + βXX 1 1 + β 2 2 + ...βKKX + ) 1 Pr(YXXX 1= | 1 , 2= ,... ) k ⎛ 1 ⎞ 1+ ⎜ ⎟ (⎝ eβ+0 βXX 1 1 + β 2 2 + ...βKK +X ⎠ ) Logit nd probita models are basically the same, the difference is in the distribution: • Logit – Cumulative standard logistic distribution (F) • Probit – Cumulative standard normal distribution (Φ) Both models provide similar results. PU/DSS/OTR It tests whether the combined effect, of all the variables in the model, is different from zero. If, for example, < 0.05 then the model have some relevant explanatory power, which does not mean it is well specified or at all correct. Logit: predicted probabilities After running the model: logit y_bin x1 x2 x3 x4 x5 x6 x7 Type predict y_bin_hat /*These are the predicted probabilities of Y=1 */ Here are the estimations for the first five cases, type: 1 x2 x3 x4 x5 x6 x7 y_bin_hatbrowse y_bin x Predicted probabilities To estimate the probability of Y=1 for the first row, replace the values of X into the logit regression equation.
    [Show full text]
  • Estimating Heterogeneous Choice Models with Oglm 1 Introduction
    Estimating heterogeneous choice models with oglm Richard Williams Department of Sociology, University of Notre Dame, Notre Dame, IN [email protected] Last revised October 17, 2010 – Forthcoming in The Stata Journal Abstract. When a binary or ordinal regression model incorrectly assumes that error variances are the same for all cases, the standard errors are wrong and (unlike OLS regression) the parameter estimates are biased. Heterogeneous choice (also known as location-scale or heteroskedastic ordered) models explicitly specify the determinants of heteroskedasticity in an attempt to correct for it. Such models are also useful when the variance itself is of substantive interest. This paper illustrates how the author’s Stata program oglm (Ordinal Generalized Linear Models) can be used to estimate heterogeneous choice and related models. It shows that two other models that have appeared in the literature (Allison’s model for group comparisons and Hauser and Andrew’s logistic response model with proportionality constraints) are special cases of a heterogeneous choice model and alternative parameterizations of it. The paper further argues that heterogeneous choice models may sometimes be an attractive alternative to other ordinal regression models, such as the generalized ordered logit model estimated by gologit2. Finally, the paper offers guidelines on how to interpret, test and modify heterogeneous choice models. Keywords. oglm, heterogeneous choice model, location-scale model, gologit2, ordinal regression, heteroskedasticity, generalized ordered logit model 1 Introduction When a binary or ordinal regression model incorrectly assumes that error variances are the same for all cases, the standard errors are wrong and (unlike OLS regression) the parameter estimates are biased (Yatchew & Griliches 1985).
    [Show full text]
  • Generalized Linear Models
    CHAPTER 6 Generalized linear models 6.1 Introduction Generalized linear modeling is a framework for statistical analysis that includes linear and logistic regression as special cases. Linear regression directly predicts continuous data y from a linear predictor Xβ = β0 + X1β1 + + Xkβk.Logistic regression predicts Pr(y =1)forbinarydatafromalinearpredictorwithaninverse-··· logit transformation. A generalized linear model involves: 1. A data vector y =(y1,...,yn) 2. Predictors X and coefficients β,formingalinearpredictorXβ 1 3. A link function g,yieldingavectoroftransformeddataˆy = g− (Xβ)thatare used to model the data 4. A data distribution, p(y yˆ) | 5. Possibly other parameters, such as variances, overdispersions, and cutpoints, involved in the predictors, link function, and data distribution. The options in a generalized linear model are the transformation g and the data distribution p. In linear regression,thetransformationistheidentity(thatis,g(u) u)and • the data distribution is normal, with standard deviation σ estimated from≡ data. 1 1 In logistic regression,thetransformationistheinverse-logit,g− (u)=logit− (u) • (see Figure 5.2a on page 80) and the data distribution is defined by the proba- bility for binary data: Pr(y =1)=y ˆ. This chapter discusses several other classes of generalized linear model, which we list here for convenience: The Poisson model (Section 6.2) is used for count data; that is, where each • data point yi can equal 0, 1, 2, ....Theusualtransformationg used here is the logarithmic, so that g(u)=exp(u)transformsacontinuouslinearpredictorXiβ to a positivey ˆi.ThedatadistributionisPoisson. It is usually a good idea to add a parameter to this model to capture overdis- persion,thatis,variationinthedatabeyondwhatwouldbepredictedfromthe Poisson distribution alone.
    [Show full text]
  • Ordered/Ordinal Logistic Regression with SAS and Stata1
    Ordered/Ordinal Logistic Regression with SAS and Stata1 This document will describe the use of Ordered Logistic Regression (OLR), a statistical technique that can sometimes be used with an ordered (from low to high) dependent variable. The dependent variable used in this document will be the fear of crime, with values of: 1 = not at all fearful 2 = not very fearful 3 = somewhat fearful 4 = very fearful Ordered logit model has the form: This model is known as the proportional-odds model because the odds ratio of the event is independent of the category j. The odds ratio is assumed to be constant for all categories. Source: http://www.indiana.edu/~statmath/stat/all/cat/2b1.html Syntax and results using both SAS and Stata will be discussed. OLR models cumulative probability. It simultaneously estimates multiple equations. The number of equations it estimates will the number of categories in the dependent variable minus one. So, for our example, three equations will be estimated. The equations are: Pooled Pooled Categories compared to Categories Equation 1: 1 2 3 4 Equation 2: 1 2 3 4 Equation 3: 1 2 3 4 Each equation models the odds of being in the set of categories on the left versus the set of categories on the right. OLR provides only one set of coefficients for each independent variable. Therefore, there is an assumption of parallel regression. That is, the coefficients for the variables in the equations would not vary significantly if they were estimated separately. The intercepts would be different, but the slopes would be essentially the same.
    [Show full text]
  • Using a General Ordered Logit Model to Explain the Influence of Hotel
    sustainability Article Using a General Ordered Logit Model to Explain the Influence of Hotel Facilities, General and Sustainability-Related, on Customer Ratings Ioana-Nicoleta Abrudan 1,*, Ciprian-Marcel Pop 1 and Paul-Sorin Lazăr 2 1 Faculty of Economics and Business Administration, Babes, -Bolyai University, 58-60 T. Mihali St, 400591 Cluj-Napoca, Romania; [email protected] 2 Faculty of Business, Babes, -Bolyai University, 7 Horea St., 400174 Cluj-Napoca, Romania; [email protected] * Correspondence: [email protected]; Tel.: +40-752-028-500 Received: 7 October 2020; Accepted: 3 November 2020; Published: 9 November 2020 Abstract: The hotel market has become extremely competitive over the past years. Hotels try to differentiate themselves through their services and facilities. To make the best choice when searching for accommodation, guests increasingly use rating systems of booking sites. Using an ordered logit model (OLM), we identify, in our study, a sample that comprises of 635 hotels from Romania. These are the hotel facilities that significantly influence customer review scores (as an expression of customer satisfaction) on booking.com, the most widespread rating system. We also identify whether their impact on intervals of satisfaction levels vary. Some explanatory variables invalidate the Brant test for proportional odds assumption. Thus, for the final estimates, we use a generalized ordered logit model (GOLOGIT). The results show that food-related facilities, restaurants, and complimentary breakfasts, are very significant for customer ratings. Relevant hotel common facilities are the pool and parking spaces, while for the room—the flat-screen TV. It is interesting to note the negative influence of pets, which seem to disturb other tourists.
    [Show full text]
  • Logit and Probit Models for Categorical Response Variables
    Applied Statistics With R Logit and Probit Models for Categorical Response Variables John Fox WU Wien May/June 2006 © 2006 by John Fox Logit and Probit Models 1 Logit and Probit Models 2 1. Goals: 2. Models for Dichotomous Data To show how models similar to linear models can be developed for To understand why special models for qualitative data are required, let • qualitative/categorical response variables. • us begin by examining a representative problem, attempting to apply To introduce logit (and probit) models for dichotomous response linear regression to it: • variables. – In September of 1988, 15 years after the coup of 1973, the people of Chile voted in a plebiscite to decide the future of the military To introduce similar statistical models for polytomous response variables, • government. A ‘yes’ vote would represent eight more years of military including ordered categories. rule; a ‘no’ vote would return the country to civilian government. The To describe how logit models can be applied to contingency tables. no side won the plebiscite, by a clear if not overwhelming margin. • – Six months before the plebiscite, FLACSO/Chile conducted a national survey of 2,700 randomly selected Chilean voters. Of these individuals, 868 said that they were planning to vote yes, ∗ and 889 said that they were planning to vote no. Of the remainder, 558 said that they were undecided, 187 said that ∗ they planned to abstain, and 168 did not answer the question. John Fox WU Wien May/June 2006 John Fox WU Wien May/June 2006 Logit and Probit Models 3 Logit and Probit Models 4 I will look only at those who expressed a preference.
    [Show full text]
  • Ologit — Ordered Logistic Regression
    Title stata.com ologit — Ordered logistic regression Syntax Menu Description Options Remarks and examples Stored results Methods and formulas References Also see Syntax ologit depvar indepvars if in weight , options options Description Model offset(varname) include varname in model with coefficient constrained to 1 constraints(constraints) apply specified linear constraints collinear keep collinear variables SE/Robust vce(vcetype) vcetype may be oim, robust, cluster clustvar, bootstrap, or jackknife Reporting level(#) set confidence level; default is level(95) or report odds ratios nocnsreport do not display constraints display options control column formats, row spacing, line width, display of omitted variables and base and empty cells, and factor-variable labeling Maximization maximize options control the maximization process; seldom used coeflegend display legend instead of statistics indepvars may contain factor variables; see [U] 11.4.3 Factor variables. depvar and indepvars may contain time-series operators; see [U] 11.4.4 Time-series varlists. bootstrap, by, fp, jackknife, mfp, mi estimate, nestreg, rolling, statsby, stepwise, and svy are allowed; see [U] 11.1.10 Prefix commands. vce(bootstrap) and vce(jackknife) are not allowed with the mi estimate prefix; see [MI] mi estimate. Weights are not allowed with the bootstrap prefix; see [R] bootstrap. vce() and weights are not allowed with the svy prefix; see [SVY] svy. fweights, iweights, and pweights are allowed; see [U] 11.1.6 weight. coeflegend does not appear in the dialog box. See [U] 20 Estimation and postestimation commands for more capabilities of estimation commands. Menu Statistics > Ordinal outcomes > Ordered logistic regression 1 2 ologit — Ordered logistic regression Description ologit fits ordered logit models of ordinal variable depvar on the independent variables indepvars.
    [Show full text]
  • Ordinal Regression Earlier (“Analysis of Ordinal Contingency Tables”)
    Newsom Psy 525/625 Categorical Data Analysis, Spring 2021 1 Ordinal Regression Earlier (“Analysis of Ordinal Contingency Tables”), we considered ordinal variables in contingency tables. Such models do not generally assume designation of an explanatory (independent) and response (dependent) variable, but they also are limited in inclusion of covariates and more complex models that involve interactions between continuous and categorical predictors and so on. In discussing regression models thus far, the focus has been on binary response variables. But both logistic and probit regression models, however, can be applied to ordinal response variables with more than two ordered categories, such as response options of "never," "sometimes," and "a lot," which do not necessarily have equal distance between the values.1 The application of these models is typically to response variables with 3 or 4 rank-ordered categories, and when there are 5 or more categories, moderate sample size, and fairly symmetrically distributed variables, there will be minimal loss of power if ordinary least squares is used instead of ordinal regression (Kromrey & Rendina-Gobioff, 2002; Taylor, West, & Aiken, 2006). 2 For outcomes that can be considered ordinal, it is generally better to use all of the ordinal values rather than collapsing into fewer categories or dichotomizing variables, even with a sparse number of responses in some categories. Collapsing categories has been shown to reduce statistical power (Ananth & Kleinbaum 1997; Manor, Mathews, & Power, 2000) and increase Type I error rates (Murad, Fleischman, Sadetzki, Geyer, & Freedman, 2003). Ordered Logit Ordered logit models are logistic regressions that model the change among the several ordered values as a function of each unit increase in the predictor.
    [Show full text]
  • Ordered Logit Model
    L. Grilli, C. Rampichini: Ordered logit model ORDERED LOGIT MODEL* Leonardo Grilli, Carla Rampichini Dipartimento di Statistica, Informatica, Applicazioni “G. Parenti” – Università di Firenze [email protected], [email protected] The ordered logit model is a regression model for an ordinal response variable. The model is based on the cumulative probabilities of the response variable: in particular, the logit of each cumulative probability is assumed to be a linear function of the covariates with regression coefficients constant across response categories. Questions relating to satisfaction with life assessment and expectations are usually ordinal in nature. For example, the answer to the question on how satisfied a person is with her quality of life can range from 1 to 10, with 1 being very dissatisfied and 10 being very satisfied (e.g. Schaafsma and Osoba, 1994; Anderson et al. 2009). It is tempting to analyse ordinal outcomes with the linear regression model, assuming equal distances between categories. However, this approach has several drawbacks which are well known in literature (see, for example, McKelvey and Zavoina, 1975; Winship and Mare, 1984; Lu, 1999). When the response variable of interest is ordinal, it is advisable to use a specific model such as the ordered logit model. Let Yi be an ordinal response variable with C categories for the i-th subject, alongside with a vector of covariates xi. A regression model establishes a relationship between the covariates and the set of probabilities of the categories pci=Pr(Yi =yc| xi), c=1,…,C. Usually, regression models for ordinal responses are not expressed in terms of probabilities of the categories, but they refer to convenient one-to- one transformations, such as the cumulative probabilities gci=Pr(Yi ≤yc| xi), c=1,…,C.
    [Show full text]
  • Regression Models with Ordinal Variables*
    REGRESSION MODELS WITH ORDINAL VARIABLES* CHRISTOPHER WINSHIP ROBERT D. MARE Northwestern University and Economics University of Wisconsin-Madison Research Center/NORC Most discussions of ordinal variables in the sociological literature debate the suitability of linear regression and structural equation methods when some variables are ordinal. Largely ignored in these discussions are methods for ordinal variables that are natural extensions of probit and logit models for dichotomous variables. If ordinal variables are discrete realizations of unmeasured continuous variables, these methods allow one to include ordinal dependent and independent variables into structural equation models in a way that (I) explicitly recognizes their ordinality, (2) avoids arbitrary assumptions about their scale, and (3) allows for analysis of continuous, dichotomous, and ordinal variables within a common statistical framework. These models rely on assumed probability distributions of the continuous variables that underly the observed ordinal variables, but these assumptions are testable. The models can be estimated using a number of commonly used statistical programs. As is illustrated by an empirical example, ordered probit and logit models, like their dichotomous counterparts, take account of the ceiling andfloor restrictions on models that include ordinal variables, whereas the linear regression model does not. Empirical social research has benefited dur- 1982) that discuss whether, on the one hand, ing the past two decades from the application ordinal variables can be safely treated as if they of structural equation models for statistical were continuous variables and thus ordinary analysis and causal interpretation of mul- linear model techniques applied to them, or, on tivariate relationships (e.g., Goldberger and the other hand, ordinal variables require spe- Duncan, 1973; Bielby and Hauser, 1977).
    [Show full text]
  • Using Generalized Ordinal Logistic Regression Models to Estimate Educational Data Xing Liu Eastern Connecticut State University, [email protected]
    Journal of Modern Applied Statistical Methods Volume 11 | Issue 1 Article 21 5-1-2012 Ordinal Regression Analysis: Using Generalized Ordinal Logistic Regression Models to Estimate Educational Data Xing Liu Eastern Connecticut State University, [email protected] Hari Koirala Eastern Connecticut State University Follow this and additional works at: http://digitalcommons.wayne.edu/jmasm Part of the Applied Statistics Commons, Social and Behavioral Sciences Commons, and the Statistical Theory Commons Recommended Citation Liu, Xing and Koirala, Hari (2012) "Ordinal Regression Analysis: Using Generalized Ordinal Logistic Regression Models to Estimate Educational Data," Journal of Modern Applied Statistical Methods: Vol. 11 : Iss. 1 , Article 21. DOI: 10.22237/jmasm/1335846000 Available at: http://digitalcommons.wayne.edu/jmasm/vol11/iss1/21 This Regular Article is brought to you for free and open access by the Open Access Journals at DigitalCommons@WayneState. It has been accepted for inclusion in Journal of Modern Applied Statistical Methods by an authorized editor of DigitalCommons@WayneState. Journal of Modern Applied Statistical Methods Copyright © 2012 JMASM, Inc. May 2012, Vol. 11, No. 1, 242-254 1538 – 9472/12/$95.00 Ordinal Regression Analysis: Using Generalized Ordinal Logistic Regression Models to Estimate Educational Data Xing Liu Hari Koirala Eastern Connecticut State University, Willimantic, CT The proportional odds (PO) assumption for ordinal regression analysis is often violated because it is strongly affected by sample size and the number of covariate patterns. To address this issue, the partial proportional odds (PPO) model and the generalized ordinal logit model were developed. However, these models are not typically used in research. One likely reason for this is the restriction of current statistical software packages: SPSS cannot perform the generalized ordinal logit model analysis and SAS requires data restructuring.
    [Show full text]