/* ** count5.e ** ** Pareto regression model for duration data ** */ library count; #include count.ext; countset; dep = { wars }; ind = { age, coups }; dataset = "count"; output file = count5.out reset; call countprt(pareto(dataset,dep,ind)); output off;