On Sun, 24 May 2020, Fred Engst wrote:
Hi Allin and all,
While I was doing some scripting, I found another repeatable crash.
This is my stripped down version from a more developed script:
# crash test
list y = l_price
list x = bedrooms age baths
strings xnames = defarray("const") + varnames(x)
ols y const x --robust --quiet
scalar i = 1
string xname = xnames[i]
scalar coeff = $coeff(xname)
scalar coeff = $coeff(xnames[i])
[The last line provoked a crash]
Again, thanks for the report. Fixed in git.
Allin