An empty line occurs in the output of the Stata's describe command, as can be seen from this example:
results in:
This is not a big deal, but rather counterintuitive and made me wonder a couple of times if a variable was somehow 'suppressed' in the output (similar to how it is done in the [weird] output of graph query
).
(Stata 17.0/Windows)
Thank you, Sergiy
Code:
clear all generate byte urbanrural=1 label define urbanrural 0 "Rural" 1 "Urban" label values urbanrural urbanrural generate x=1 describe
Code:
Contains data
Observations: 0
Variables: 2
------------------------------------------------------------------------------------------------
Variable Storage Display Value
name type format label Variable label
------------------------------------------------------------------------------------------------
urbanrural byte %8.0g urbanrural
x float %9.0g
------------------------------------------------------------------------------------------------
Sorted by:
Note: Dataset has changed since last saved.
). (Stata 17.0/Windows)
Thank you, Sergiy

Comment