Search found 1 match

by oshabcde
Tue Apr 12, 2016 8:14 am
Forum: runmlwin user forum
Topic: xtmixed syntax in runmlwin
Replies: 1
Views: 3897

xtmixed syntax in runmlwin

I want to know how to replicate xtmixed command used by Roberto G. Gutierrez to smooth via penalized splines by using runmlwin command. Is it possible?

use http://www.stata.com/icpsr/mixed/motor, clear
local i 1
forvalues k = 1(1)60 {
gen time_‘i’ = cond(time - ‘k’ > 0, time - ‘k’, 0)
local ++i ...