Hi all,
(apologies for my mistake in subject, i tried to fix but its not possible: Freq=1 mean r(r) = 1 or percent=100 )
I am having problems with asdoc when r(r) = 1 or percent=100. I know that sound a naive question but I am running a loop cycle with 3 way cross tabulation in a big number of variables and found this issue.
an example is:
set obs 100
gen var=1
tab var
with asdoc
Please any comment i would grateful
Rodrigo
(apologies for my mistake in subject, i tried to fix but its not possible: Freq=1 mean r(r) = 1 or percent=100 )
I am having problems with asdoc when r(r) = 1 or percent=100. I know that sound a naive question but I am running a loop cycle with 3 way cross tabulation in a big number of variables and found this issue.
an example is:
set obs 100
gen var=1
tab var
Code:
var | Freq. Percent Cum. ------------+----------------------------------- 1 | 100 100.00 100.00 ------------+----------------------------------- Total | 100 100.00 . ret li scalars: r(N) = 100 r(r) = 1
Code:
asdoc tab var var | Freq. Percent Cum. ------------+----------------------------------- 1 | 100 100.00 100.00 ------------+----------------------------------- Total | 100 100.00 tabonevar(): 3200 conformability error <istmt>: - function returned error r(3200);
Please any comment i would grateful
Rodrigo
Comment