Important: Read this before posting to this forum

  1. This forum is for questions related to the use of Apollo. We will answer some general choice modelling questions too, where appropriate, and time permitting. We cannot answer questions about how to estimate choice models with other software packages.
  2. There is a very detailed manual for Apollo available at http://www.ApolloChoiceModelling.com/manual.html. This contains detailed descriptions of the various Apollo functions, and numerous examples are available at http://www.ApolloChoiceModelling.com/examples.html. In addition, help files are available for all functions, using e.g. ?apollo_mnl
  3. Before asking a question on the forum, users are kindly requested to follow these steps:
    1. Check that the same issue has not already been addressed in the forum - there is a search tool.
    2. Ensure that the correct syntax has been used. For any function, detailed instructions are available directly in Apollo, e.g. by using ?apollo_mnl for apollo_mnl
    3. Check the frequently asked questions section on the Apollo website, which discusses some common issues/failures. Please see http://www.apollochoicemodelling.com/faq.html
    4. Make sure that R is using the latest official release of Apollo.
  4. If the above steps do not resolve the issue, then users should follow these steps when posting a question:
    1. provide full details on the issue, including the entire code and output, including any error messages
    2. posts will not immediately appear on the forum, but will be checked by a moderator first. This may take a day or two at busy times. There is no need to submit the post multiple times.

bug in MNL with covariates

Ask questions about errors you encouunter. Please make sure to include full details about your model specifications, and ideally your model file.
Post Reply
anenor
Posts: 2
Joined: 11 May 2022, 11:21

bug in MNL with covariates

Post by anenor »

Hi,
I am new to Apollo and are trying to make an MNL model with socio-demographics. I always end up with an error. I have a simple DCE data with 8 questions per respondent and are trying to implement "female" dummy variable to the model.

Here is my R code:


### Clear memory
rm(list = ls())

### Load Apollo library
library(apollo)


### Initialise code
apollo_initialise()

### Set core controls
apollo_control = list(
modelName = "MNL_SP_covariates",
modelDescr = "MNL model with socio-demographics on mode choice SP data",
indivID = "ID",
outputDirectory = "output"
)


#### LOAD DATA AND APPLY ANY TRANSFORMATIONS

### Loading data from package
### if data is to be loaded from a file (e.g. called data.csv),
### the code would be: database = read.csv("data.csv",header=TRUE)

database = ne1

#### ANALYSIS OF CHOICES

### Define settings for analysis of choice data to be conducted prior to model estimation
choiceAnalysis_settings <- list(
alternatives = c(airplane=1, train=2, home=3),
avail = 1,
choiceVar = database$choice,
explanators = database[,c("female")])

### Run function to analyse choice data
apollo_choiceAnalysis(choiceAnalysis_settings, apollo_control, database)


#### DEFINE MODEL PARAMETERS

### Vector of parameters, including any that are kept fixed in estimation
### Vector of parameters, including any that are kept fixed in estimation
apollo_beta=c(asc_plane = 0,
asc_train = 0,
b_female = 0,
b_tt = 0,
b_cost = 0)

### Vector with names (in quotes) of parameters to be kept fixed at their starting value in apollo_beta, use apollo_beta_fixed = c() if none
apollo_fixed = c()


#### GROUP AND VALIDATE INPUTS

apollo_inputs = apollo_validateInputs()


#### DEFINE MODEL AND LIKELIHOOD FUNCTION

apollo_probabilities=function(apollo_beta, apollo_inputs, functionality="estimate"){

### Attach inputs and detach after function exit
apollo_attach(apollo_beta, apollo_inputs)
on.exit(apollo_detach(apollo_beta, apollo_inputs))

### Create list of probabilities P
P = list()

### List of utilities: these must use the same names as in mnl_settings, order is irrelevant
V = list()
V[["airplane"]] = asc_plane + b_tt * t1 + b_cost * c1 + b_female * female
V[["train"]] = asc_train + b_tt * t2 + b_cost * c2 + b_female * female
V[["home"]] = 0

### Define settings for MNL model component
mnl_settings = list(
alternatives = c(airplane=1, train=2, home=3),
avail = 1,
choiceVar = choice,
utilities = V
)

### Compute probabilities using MNL model
P[["model"]] = apollo_mnl(mnl_settings, functionality)

### Take product across observation for same individual
P = apollo_panelProd(P, apollo_inputs, functionality)

### Prepare and return outputs of function
P = apollo_prepareProb(P, apollo_inputs, functionality)
return(P)
}


#### MODEL ESTIMATION

model = apollo_estimate(apollo_beta, apollo_fixed, apollo_probabilities, apollo_inputs)


And I end up with this error message:

Error in apollo_validate(mnl_settings, modelType, functionality, apollo_inputs) :
Some utilities for model component "MNL" contain values that are not finite numbers!
stephanehess
Site Admin
Posts: 974
Joined: 24 Apr 2020, 16:29

Re: bug in MNL with covariates

Post by stephanehess »

Hi

This is not a bug. Apollo tells you what's wrong

Code: Select all

Some utilities for model component "MNL" contain values that are not finite numbers!
Do you have NA in your data for example? That would explain it

Stephane
--------------------------------
Stephane Hess
www.stephanehess.me.uk
anenor
Posts: 2
Joined: 11 May 2022, 11:21

Re: bug in MNL with covariates

Post by anenor »

Hi, thank you for answering!

I did indeed have some NA in my data, and removing them fixed the problem.
Thank you again!
Post Reply