]> henry.ined.fr Git - .git/commitdiff
*** empty log message ***
authorN. Brouard <brouard@ined.fr>
Tue, 5 Apr 2022 21:24:39 +0000 (21:24 +0000)
committerN. Brouard <brouard@ined.fr>
Tue, 5 Apr 2022 21:24:39 +0000 (21:24 +0000)
src/imach.c

index 549b0a7f1bd72c210bc216deac1d425a3d761e55..aed16578c32ea03ffab13cdc48fdfef0317940ee 100644 (file)
@@ -1,6 +1,15 @@
 /* $Id$
   $State$
   $Log$
+  Revision 1.311  2022/04/05 21:03:51  brouard
+  Summary: Fixed quantitative covariates
+
+         Fixed covariates (dummy or quantitative)
+       with missing values have never been allowed but are ERRORS and
+       program quits. Standard deviations of fixed covariates were
+       wrongly computed. Mean and standard deviations of time varying
+       covariates are still not computed.
+
   Revision 1.310  2022/03/17 08:45:53  brouard
   Summary: 99r25
 
@@ -4772,7 +4781,7 @@ Title=%s <br>Datafile=%s Firstpass=%d Lastpass=%d Stepm=%d Weight=%d Model=1+age
       */
       for (z1=1; z1<= nqfveff; z1++) {
        fprintf(ficlog,"Mean of fixed quantitative variable V%d on %.3g (weighted) individuals sum=%f", ncovcol+z1, idq[z1], meanq[z1]);
-       fprintf(ficlog,", mean=%.3g",meanq[z1]/idq[z1]," stdeviation=%.3g\n",stdq[z1]);
+       fprintf(ficlog,", mean=%.3g\n",meanq[z1]/idq[z1]);
        if(weightopt==1){
          printf(" Weighted mean and standard deviation of");
          fprintf(ficlog," Weighted mean and standard deviation of");