// import the data into a dataset called Data Data = webimport("www.bayeconsoft.com/datasets/FishingMode.csv"); // create a constant term Data.constant = 1; // run the conditional-Logit model myCLogit = clogit( mode ~ price rate | constant income, "thin"=5, "chains"=2 ); // run the conditional-Probit model myCProbit = cprobit( mode ~ price rate | constant income, "thin"=5, "chains"=2 );