IntraCV calculation [Power / Sample Size]
❝ intra CV zero!!!
❝ Are you dealing with man or machine?!! which have also a little precision...
I used SAS program.
This is the code I used.
ODS OUTPUT COVPARMS=RESIDUAL8;
PROC MIXED DATA=FED_VDCL;
CLASS SUB P;
MODEL LVD= P;
RANDOM SUB;
REPEATED/GRP=SUB SUB=SUB;
LSMEANS /PDIFF CL ALPHA=0.1;
RUN;
DATA RESIDUAL8;
SET RESIDUAL8;
IF COVPARM NE 'Residual' THEN DELETE;
INTRACV=SQRT(EXP(ESTIMATE)-1)*100;
RUN;
Edit: Full quote removed. Please delete everything from the text of the original poster which is not necessary in understanding your answer. Tabulators changed to spaces and BBcoded; see also this post #5 and #6. [Helmut]
Complete thread:
- IntraCV calculation youivab 2017-12-27 06:20 [Power / Sample Size]
- IntraCV calculation BE-proff 2017-12-27 06:49
- IntraCV calculation youivab 2017-12-28 01:35
- IntraCV calculation kms.srinivas 2017-12-27 06:53
- IntraCV calculationyouivab 2017-12-28 01:37
- IntraCV calculation GM 2017-12-28 06:56
- IntraCV calculationyouivab 2017-12-28 01:37
- IntraCV calculation BE-proff 2017-12-27 06:49