Dr. Attaullah Shah
Keymaster
Post count: 106

Hello Ben
I have fixed the issue of cnames(). You can update the asdocx by

asdocx_update

Following is an example and the output generated by asdocx

  sysuse auto, clear
  asdocx reg price mpg rep78, nest replace cnames(Base) replace label

* Add variable headroom and then nest with existing table
  asdocx reg price mpg rep78 headroom, nest label cnames(Headroom)

* Add variable weight and then nest with existing table
  asdocx reg price mpg rep78 headroom weight, nest label cnames(Weight)

asdocx nested regression