Any tips on how to handle a datasignature that is always changing after a fixed set of commands?
For example, the following collapse would produce different signatures every time I run it:
use file.dta, clear
collapse (mean) var1, by(year)
datasignature
I'm having a hard time replicating the error--if I use the auto dataset, or a simulated dataset---no problem.
If I use my same dataset with this issue, but drop if _n < 337, no problem.
Drop if _n < 338---problem! There is nothing remarkable about the contents of observation 337 as far as I can see.
I'm running Stata 17 on a Mac running Big Sur 11.6.2.
For example, the following collapse would produce different signatures every time I run it:
use file.dta, clear
collapse (mean) var1, by(year)
datasignature
I'm having a hard time replicating the error--if I use the auto dataset, or a simulated dataset---no problem.
If I use my same dataset with this issue, but drop if _n < 337, no problem.
Drop if _n < 338---problem! There is nothing remarkable about the contents of observation 337 as far as I can see.
I'm running Stata 17 on a Mac running Big Sur 11.6.2.
Comment