Displaying 20 results from an estimated 20000 matches similar to: "DIscrete choice mlogit"
2005 Dec 15
0
MNP - discrete choice experiment
Hello,
I need a little initial help with the MNP package.
I am trying to analyze a discrete choice experiment with the following
settings:
- choice sets consist of 3 alternatives
- choice alternatives are constructed by e.g. two attributes, say brand and
price.
- brand has three levels and price has four levels
- every respondent has to answer 4 different choice sets (drawn randomly or
2011 Jan 18
0
multinomial choice modeling with mlogit
Hi all,
Does anyone knows how to handle ordered preferences applying the R
package mlogit (multinomial logit model)? My data set provides for each
customer preferences (given as percentages) for 6 different brands. I
would like to use for model calibration not just that brand with
maximum stated preference.
I know that ordered preferences can be used in the R package MNP
(multinomial Probit
2010 Mar 07
3
mlogit
I am trying to follow this example for multinomial logistic regression
http://www.ats.ucla.edu/stat/r/dae/mlogit.htm
However, I cannot get it to work properly.
This is the output I get, and I get an error when I try to use the mlogit
function. Any ideas as to why this happens?
> mydata <- read.csv(url("http://www.ats.ucla.edu/stat/r/dae/mlogit.csv"))
> attach(mydata)
>
2011 Jan 31
2
Latent Class Logit Models in discrete choice experiments
Dear R users,
I would like to perform Latent Class Logit Models for the analysis of choice experiments in environmental valuation.
This kind of analysis is usually performed with NLogit Software (http://www.limdep.com).
I attach the results I usually obtain using NLogit and NLogit model specifications.
For Random parameter models and Logit Models I usually perform my analysis with the package
2013 Mar 19
0
mlogit: block design CE model
Hi,
I am trying to use mlogit in R to analyse a block design choice experiment
dataset. The 12 choice sets/cards have been randomly assigned to 3
different blocks and each respondent answers all sets from one block (i.e.
each respondent chooses from 4 choice sets). In total I have 2336 rows of
data from 292 respondents. The data looks like this (2 of the three
blocks):
ID Sex Age Block Card
2011 Nov 02
0
Calling str() on mlogit object gives warnings
Hi:
When I call str() on an mlogit object, I seem to get warnings. This
code is from an example provided in the mlogit documentation:
library(mlogit)
data("Train", package="mlogit")
tr<-mlogit.data(Train, shape="wide", choice="choice", varying=4:11,
sep="", alt.levels=c(1,2), id="id")
2012 Oct 01
2
mlogit and model-based recursive partitioning
Hello:
Has anyone tried to model-based recursive partition (using mob from package
party; thanks Achim and colleagues) a data set based on a multinomial logit
model (using mlogit from package mlogit; thanks Yves)?
I attempted to do so, but there are at least two reasons why I could not.
First, in mob I am not quite sure that a model of class StatModel exists for
mlogit models. Second, as
2010 Nov 18
0
Mixed multinomial logit model (mlogit script)
Dear all,
I am trying to run a mixed multinomial logit model in R since my response variable has 4 non-ordinal categories. I am using the package mlogit that estimates the parameters by maximum likelihood methods. First of all, I prepared my data using the mlogit.data command. In the mlogit command, one can introduce alternative-specific (fixed factors??) and individual-specific (random
2010 Aug 13
1
mlogit error
Hi,
I'm trying to fit a multinomial logistic regression to my data which
consists of 5 discrete variables (scales 1:10) and 1000 observations.
I get the following error:
Error in `row.names<-.data.frame`(`*tmp*`, value = c("NA.NA", "NA.NA", :
duplicate 'row.names' are not allowed
In addition: Warning message:
non-unique value when setting
2012 Apr 19
1
mlogit learning error
I am learning five mlogits as follows
v1.model<-mlogit(v1~1|v2+v3+v4+v5, data=mlogit.v1.data, reflevel="1")
v2.model<-mlogit(v2~1|v1+v3+v4+v5, data=mlogit.v2.data, reflevel="1")
v3.model<-mlogit(v3~1|v1+v2+v4+v5, data=mlogit.v3.data, reflevel="1")
v4.model<-mlogit(v4~1|v1+v2+v3+v5, data=mlogit.v4.data, reflevel="1")
2010 Feb 10
0
mlogit: Error reported using sample dataset
I've been working on a multinomial logit model, trying to predict
vegetation types as a function of total phosphorus. Previous responses to
my postings have pointed me to the mlogit package. I'm now trying to work
examples and my data using this package.
data("Fishing", package = "mlogit")
Fish <- mlogit.data(Fishing, varying = c(4:11), shape = "wide",
2011 Aug 12
0
Mixed Logit model mlogit error
I am new to R but I have managed to use mlogit to run multivariate logit
models successfully. My data violates the Independence of Irrelevant
Alternatives assumption and now I would like to run a mixed logit model. It
is a "wide" data set with 9 independent (individual) variables and three
choices (variable Y). The database is in a cvs file called CAU.
This is the code I have run
2016 Apr 13
0
reduced set of alternatives in package mlogit
To back up Ber's please have a look at
http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example and/or http://adv-r.had.co.nz/Reproducibility.html
John Kane
Kingston ON Canada
> -----Original Message-----
> From: jose.ferraro at logiteng.com
> Sent: Wed, 13 Apr 2016 17:18:35 +0000
> To: cdesjard at umn.edu
> Subject: Re: [R] reduced set of
2010 Feb 24
2
mlogit is not an S4 object error
Hello,
I've been getting the following error when using the mlogit function from
the mlogit package
This is one of the examples provided in the Package "mlogit" January 27,
2010 description
data("Fishing", package="mlogit")
Fish <- mlogit.data(Fishing, varying = c(4:11), shape="wide",
choice="mode")
summary(mlogit(mode ~ pr + ca - 1,
2011 Nov 29
0
Single Variable mlogit formatting
Hello,
I'm trying to run a mlogit regression on my data, and have been unsuccessful
so far. The data I am working with consist of many observations of how
people react when given a certain number. I have just 2 data points per
observation: a number (there are ~300 different possible numbers) and then a
reaction (either 0, 1, or 2). The reactions are mutually exclusive and
exhaustive.
I am
2010 Jun 03
1
mlogit and weights
Hello,
I can't figure out why using and not using weights in mlogit yields
identical results. My motivation is for the case when an
"observation" or "individual" represents a number of individuals. For
example,
library(mlogit)
library(AER)
data("TravelMode", package = "AER")
TM <- mlogit.data(TravelMode, choice = "choice", shape =
2012 May 29
0
mlogit package inquiry
Dear all,
? I am implementing a stochastic utility model that will eventually
make use of multinomial logit. I found that there is a package in R
called mlogit. I am not sure whether I have already found the correct
package or software. May I ask am I correct?
? Basically, let's say
? I have observations of n outcomes, for each outcome 1<=i<=n, they
were selected by a choice from a set
2010 Feb 14
1
mlogit function cut off formular
I'm trying to fit a multinominal logistic model using package mlogit. I have
15 independent variables. The code looks like this:
m<-mlogit(score~0|f1+f2+f3+f4+f5+f6+f7+f8+f9+f10+f11+f12+f13+f14+f15, data,
reflevel="1")
And it gives the following error message:
Error in parse(text = x) :
unexpected ')' in "score ~ 0 + alt:(f1 + f2 + f3 + f4 + f5 + f6 + f7 + f8
+ f9
2017 Jul 28
0
Error in `[[<-.data.frame`(`*tmp*`, alt.name, value = integer(0)) with mlogit
Hello,
There's a typo in your call to mlogit.data, it should be
alt.var="nbChev", not alt.var="noChev".
Then the error is different. You should check the call arguments to see
if they make sense.
Hope this helps,
Rui Barradas
Em 28-07-2017 13:14, sandoz at free.fr escreveu:
> I re post my question with the csv problem fixed.
>
> Can someone explain the
2011 Apr 29
0
mlogit package, "Error in X[omitlines, ] <- NA : subscript out of bounds"
I am using the mlogit packages and get a data problem, for which I
can't find any clue from R archive.
code below shows my related code all the way to the error
#---------------------------------------------------------------------------
mydata <- data.frame(dependent,x,y,z)
mydata$dependent<-as.factor(mydata$dependent)
mldata<-mlogit.data(mydata, varying=NULL,