|
|
| version 1.296, 2019/05/20 13:03:18 | version 1.306, 2021/02/20 15:44:02 |
|---|---|
| Line 1 | Line 1 |
| /* $Id$ | /* $Id$ |
| $State$ | $State$ |
| $Log$ | $Log$ |
| Revision 1.306 2021/02/20 15:44:02 brouard | |
| Summary: Version 0.99r21 | |
| * imach.c (Module): Fix bug on quitting after result lines! | |
| (Module): Version 0.99r21 | |
| Revision 1.305 2021/02/20 15:28:30 brouard | |
| * imach.c (Module): Fix bug on quitting after result lines! | |
| Revision 1.304 2021/02/12 11:34:20 brouard | |
| * imach.c (Module): The use of a Windows BOM (huge) file is now an error | |
| Revision 1.303 2021/02/11 19:50:15 brouard | |
| * (Module): imach.c Someone entered 'results:' instead of 'result:'. Now it is an error which is printed. | |
| Revision 1.302 2020/02/22 21:00:05 brouard | |
| * (Module): imach.c Update mle=-3 (for computing Life expectancy | |
| and life table from the data without any state) | |
| Revision 1.301 2019/06/04 13:51:20 brouard | |
| Summary: Error in 'r'parameter file backcast yearsbproj instead of yearsfproj | |
| Revision 1.300 2019/05/22 19:09:45 brouard | |
| Summary: version 0.99r19 of May 2019 | |
| Revision 1.299 2019/05/22 18:37:08 brouard | |
| Summary: Cleaned 0.99r19 | |
| Revision 1.298 2019/05/22 18:19:56 brouard | |
| *** empty log message *** | |
| Revision 1.297 2019/05/22 17:56:10 brouard | |
| Summary: Fix bug by moving date2dmy and nhstepm which gaefin=-1 | |
| Revision 1.296 2019/05/20 13:03:18 brouard | Revision 1.296 2019/05/20 13:03:18 brouard |
| Summary: Projection syntax simplified | Summary: Projection syntax simplified |
| Line 1111 typedef struct { | Line 1145 typedef struct { |
| /* $State$ */ | /* $State$ */ |
| #include "version.h" | #include "version.h" |
| char version[]=__IMACH_VERSION__; | char version[]=__IMACH_VERSION__; |
| char copyright[]="April 2018,INED-EUROREVES-Institut de longevite-Japan Society for the Promotion of Science (Grant-in-Aid for Scientific Research 25293121), Intel Software 2015-2018"; | char copyright[]="Feb 2021,INED-EUROREVES-Institut de longevite-Japan Society for the Promotion of Science (Grant-in-Aid for Scientific Research 25293121), Intel Software 2015-2020, INED 2000-2021"; |
| char fullversion[]="$Revision$ $Date$"; | char fullversion[]="$Revision$ $Date$"; |
| char strstart[80]; | char strstart[80]; |
| char optionfilext[10], optionfilefiname[FILENAMELENGTH]; | char optionfilext[10], optionfilefiname[FILENAMELENGTH]; |
| Line 1137 int nqtveff=0; /**< ntqveff number of ef | Line 1171 int nqtveff=0; /**< ntqveff number of ef |
| int cptcov=0; /* Working variable */ | int cptcov=0; /* Working variable */ |
| int nobs=10; /* Number of observations in the data lastobs-firstobs */ | int nobs=10; /* Number of observations in the data lastobs-firstobs */ |
| int ncovcombmax=NCOVMAX; /* Maximum calculated number of covariate combination = pow(2, cptcoveff) */ | int ncovcombmax=NCOVMAX; /* Maximum calculated number of covariate combination = pow(2, cptcoveff) */ |
| int npar=NPARMAX; | int npar=NPARMAX; /* Number of parameters (nlstate+ndeath-1)*nlstate*ncovmodel; */ |
| int nlstate=2; /* Number of live states */ | int nlstate=2; /* Number of live states */ |
| int ndeath=1; /* Number of dead states */ | int ndeath=1; /* Number of dead states */ |
| int ncovmodel=0, ncovcol=0; /* Total number of covariables including constant a12*1 +b12*x ncovmodel=2 */ | int ncovmodel=0, ncovcol=0; /* Total number of covariables including constant a12*1 +b12*x ncovmodel=2 */ |
| Line 2400 void powell(double p[], double **xi, int | Line 2434 void powell(double p[], double **xi, int |
| /* But p and xit have been updated at the end of linmin, *fret corresponds to new p, xit */ | /* But p and xit have been updated at the end of linmin, *fret corresponds to new p, xit */ |
| /* New value of last point Pn is not computed, P(n-1) */ | /* New value of last point Pn is not computed, P(n-1) */ |
| for(j=1;j<=n;j++) { | for(j=1;j<=n;j++) { |
| if(flatdir[j] >0){ | if(flatdir[j] >0){ |
| printf(" p(%d)=%lf flat=%d ",j,p[j],flatdir[j]); | printf(" p(%d)=%lf flat=%d ",j,p[j],flatdir[j]); |
| fprintf(ficlog," p(%d)=%lf flat=%d ",j,p[j],flatdir[j]); | fprintf(ficlog," p(%d)=%lf flat=%d ",j,p[j],flatdir[j]); |
| } | } |
| /* printf("\n"); */ | /* printf("\n"); */ |
| /* fprintf(ficlog,"\n"); */ | /* fprintf(ficlog,"\n"); */ |
| } | } |
| /* if (2.0*fabs(fp-(*fret)) <= ftol*(fabs(fp)+fabs(*fret))) { /\* Did we reach enough precision? *\/ */ | /* if (2.0*fabs(fp-(*fret)) <= ftol*(fabs(fp)+fabs(*fret))) { /\* Did we reach enough precision? *\/ */ |
| if (2.0*fabs(fp-(*fret)) <= ftol) { /* Did we reach enough precision? */ | if (2.0*fabs(fp-(*fret)) <= ftol) { /* Did we reach enough precision? */ |
| /* We could compare with a chi^2. chisquare(0.95,ddl=1)=3.84 */ | /* We could compare with a chi^2. chisquare(0.95,ddl=1)=3.84 */ |
| Line 3015 double **pmij(double **ps, double *cov, | Line 3049 double **pmij(double **ps, double *cov, |
| /* double **bmij(double **ps, double *cov, int ncovmodel, double *x, int nlstate, double ***prevacurrent, double ***dnewm, double **doldm, double **dsavm, int ij ) */ | /* double **bmij(double **ps, double *cov, int ncovmodel, double *x, int nlstate, double ***prevacurrent, double ***dnewm, double **doldm, double **dsavm, int ij ) */ |
| double **bmij(double **ps, double *cov, int ncovmodel, double *x, int nlstate, double ***prevacurrent, int ij ) | double **bmij(double **ps, double *cov, int ncovmodel, double *x, int nlstate, double ***prevacurrent, int ij ) |
| { | { |
| /* Computes the backward probability at age agefin and covariate combination ij. In fact cov is already filled and x too. | /* Computes the backward probability at age agefin, cov[2], and covariate combination 'ij'. In fact cov is already filled and x too. |
| * Call to pmij(cov and x), call to cross prevalence, sums and inverses, left multiply, and returns in **ps as well as **bmij. | * Call to pmij(cov and x), call to cross prevalence, sums and inverses, left multiply, and returns in **ps as well as **bmij. |
| */ | */ |
| int i, ii, j,k; | int i, ii, j,k; |
| Line 3046 double **pmij(double **ps, double *cov, | Line 3080 double **pmij(double **ps, double *cov, |
| sumnew=0.; | sumnew=0.; |
| /*for (ii=1;ii<=nlstate+ndeath;ii++){*/ | /*for (ii=1;ii<=nlstate+ndeath;ii++){*/ |
| for (ii=1;ii<=nlstate;ii++){ /* Only on live states */ | for (ii=1;ii<=nlstate;ii++){ /* Only on live states */ |
| /* printf(" agefin=%d, ii=%d, ij=%d, prev=%f\n",(int)agefin,ii, ij, prevacurrent[(int)agefin][ii][ij]); */ | /* printf(" agefin=%d, ii=%d, ij=%d, prev=%f\n",(int)agefin,ii, ij, prevacurrent[(int)agefin][ii][ij]); */ |
| sumnew+=prevacurrent[(int)agefin][ii][ij]; | sumnew+=prevacurrent[(int)agefin][ii][ij]; |
| } | } |
| if(sumnew >0.01){ /* At least some value in the prevalence */ | if(sumnew >0.01){ /* At least some value in the prevalence */ |
| Line 4421 void pstamp(FILE *fichier) | Line 4455 void pstamp(FILE *fichier) |
| fprintf(fichier,"# %s.%s\n#IMaCh version %s, %s\n#%s\n# %s", optionfilefiname,optionfilext,version,copyright, fullversion, strstart); | fprintf(fichier,"# %s.%s\n#IMaCh version %s, %s\n#%s\n# %s", optionfilefiname,optionfilext,version,copyright, fullversion, strstart); |
| } | } |
| void date2dmy(double date,double *day, double *month, double *year){ | |
| double yp=0., yp1=0., yp2=0.; | |
| yp1=modf(date,&yp);/* extracts integral of date in yp and | |
| fractional in yp1 */ | |
| *year=yp; | |
| yp2=modf((yp1*12),&yp); | |
| *month=yp; | |
| yp1=modf((yp2*30.5),&yp); | |
| *day=yp; | |
| if(*day==0) *day=1; | |
| if(*month==0) *month=1; | |
| } | |
| /************ Frequencies ********************/ | /************ Frequencies ********************/ |
| Line 5189 void prevalence(double ***probs, double | Line 5237 void prevalence(double ***probs, double |
| void concatwav(int wav[], int **dh, int **bh, int **mw, int **s, double *agedc, double **agev, int firstpass, int lastpass, int imx, int nlstate, int stepm) | void concatwav(int wav[], int **dh, int **bh, int **mw, int **s, double *agedc, double **agev, int firstpass, int lastpass, int imx, int nlstate, int stepm) |
| { | { |
| /* Concatenates waves: wav[i] is the number of effective (useful waves) of individual i. | /* Concatenates waves: wav[i] is the number of effective (useful waves in the sense that a non interview is useless) of individual i. |
| Death is a valid wave (if date is known). | Death is a valid wave (if date is known). |
| mw[mi][i] is the mi (mi=1 to wav[i]) effective wave of individual i | mw[mi][i] is the mi (mi=1 to wav[i]) effective wave of individual i |
| dh[m][i] or dh[mw[mi][i]][i] is the delay between two effective waves m=mw[mi][i] | dh[m][i] or dh[mw[mi][i]][i] is the delay between two effective waves m=mw[mi][i] |
| and mw[mi+1][i]. dh depends on stepm. | and mw[mi+1][i]. dh depends on stepm. s[m][i] exists for any wave from firstpass to lastpass |
| */ | */ |
| int i=0, mi=0, m=0, mli=0; | int i=0, mi=0, m=0, mli=0; |
| Line 5231 void concatwav(int wav[], int **dh, int | Line 5279 void concatwav(int wav[], int **dh, int |
| #else | #else |
| if(s[m][i]==-1 && (int) andc[i] == 9999 && (int)anint[m][i] != 9999){ | if(s[m][i]==-1 && (int) andc[i] == 9999 && (int)anint[m][i] != 9999){ |
| if(firsthree == 0){ | if(firsthree == 0){ |
| printf("Information! Unknown status for individual %ld line=%d occurred at last wave %d at known date %d/%d. Please, check if your unknown date of death %d/%d means a live state %d at wave %d. This case(%d)/wave(%d) contributes to the likelihood as 1-p%d%d .\nOthers in log file only\n",num[i],i,lastpass,(int)mint[m][i],(int)anint[m][i], (int) moisdc[i], (int) andc[i], s[m][i], m, i, m, s[m][i], nlstate+ndeath); | printf("Information! Unknown status for individual %ld line=%d occurred at last wave %d at known date %d/%d. Please, check if your unknown date of death %d/%d means a live state %d at wave %d. This case(%d)/wave(%d) contributes to the likelihood as 1-p_{%d%d} .\nOthers in log file only\n",num[i],i,lastpass,(int)mint[m][i],(int)anint[m][i], (int) moisdc[i], (int) andc[i], s[m][i], m, i, m, s[m][i], nlstate+ndeath); |
| firsthree=1; | firsthree=1; |
| } | } |
| fprintf(ficlog,"Information! Unknown status for individual %ld line=%d occurred at last wave %d at known date %d/%d. Please, check if your unknown date of death %d/%d means a live state %d at wave %d. This case(%d)/wave(%d) contributes to the likelihood as 1-p%d%d .\n",num[i],i,lastpass,(int)mint[m][i],(int)anint[m][i], (int) moisdc[i], (int) andc[i], s[m][i], m, i, m, s[m][i], nlstate+ndeath); | fprintf(ficlog,"Information! Unknown status for individual %ld line=%d occurred at last wave %d at known date %d/%d. Please, check if your unknown date of death %d/%d means a live state %d at wave %d. This case(%d)/wave(%d) contributes to the likelihood as 1-p_{%d%d} .\n",num[i],i,lastpass,(int)mint[m][i],(int)anint[m][i], (int) moisdc[i], (int) andc[i], s[m][i], m, i, m, s[m][i], nlstate+ndeath); |
| mw[++mi][i]=m; | mw[++mi][i]=m; |
| mli=m; | mli=m; |
| } | } |
| Line 8321 set ter svg size 640, 480\nunset log y\n | Line 8369 set ter svg size 640, 480\nunset log y\n |
| }/* End movingaverage */ | }/* End movingaverage */ |
| int date2dmy(double date,double *day, double *month, double *year){ | |
| double yp=0., yp1=0., yp2=0.; | |
| yp1=modf(date,&yp);/* extracts integral of date in yp and | |
| fractional in yp1 */ | |
| *year=yp; | |
| yp2=modf((yp1*12),&yp); | |
| *month=yp; | |
| yp1=modf((yp2*30.5),&yp); | |
| *day=yp; | |
| if(*day==0) *day=1; | |
| if(*month==0) *month=1; | |
| return; | |
| } | |
| /************** Forecasting ******************/ | /************** Forecasting ******************/ |
| /* void prevforecast(char fileres[], double dateintmean, double anprojd, double mprojd, double jprojd, double ageminpar, double agemax, double dateprev1, double dateprev2, int mobilav, double ***prev, double bage, double fage, int firstpass, int lastpass, double anprojf, double p[], int cptcoveff)*/ | /* void prevforecast(char fileres[], double dateintmean, double anprojd, double mprojd, double jprojd, double ageminpar, double agemax, double dateprev1, double dateprev2, int mobilav, double ***prev, double bage, double fage, int firstpass, int lastpass, double anprojf, double p[], int cptcoveff)*/ |
| Line 8490 void prevforecast(char fileres[], double | Line 8524 void prevforecast(char fileres[], double |
| */ | */ |
| int yearp, stepsize, hstepm, nhstepm, j, k, cptcod, i, h, i1, k4, nres=0; | int yearp, stepsize, hstepm, nhstepm, j, k, cptcod, i, h, i1, k4, nres=0; |
| double agec; /* generic age */ | double agec; /* generic age */ |
| double agelim, ppij, ppi, yp,yp1,yp2,jintmean,mintmean,aintmean; | double agelim, ppij, ppi, yp,yp1,yp2; /* ,jintmean,mintmean,aintmean;*/ |
| double *popeffectif,*popcount; | double *popeffectif,*popcount; |
| double ***p3mat; | double ***p3mat; |
| /* double ***mobaverage; */ | /* double ***mobaverage; */ |
| Line 9046 void prwizard(int ncovmodel, int nlstate | Line 9080 void prwizard(int ncovmodel, int nlstate |
| /******************* Gompertz Likelihood ******************************/ | /******************* Gompertz Likelihood ******************************/ |
| double gompertz(double x[]) | double gompertz(double x[]) |
| { | { |
| double A,B,L=0.0,sump=0.,num=0.; | double A=0.0,B=0.,L=0.0,sump=0.,num=0.; |
| int i,n=0; /* n is the size of the sample */ | int i,n=0; /* n is the size of the sample */ |
| for (i=1;i<=imx ; i++) { | for (i=1;i<=imx ; i++) { |
| Line 9054 double gompertz(double x[]) | Line 9088 double gompertz(double x[]) |
| /* sump=sump+1;*/ | /* sump=sump+1;*/ |
| num=num+1; | num=num+1; |
| } | } |
| L=0.0; | |
| /* agegomp=AGEGOMP; */ | |
| /* for (i=0; i<=imx; i++) | /* for (i=0; i<=imx; i++) |
| if (wav[i]>0) printf("i=%d ageex=%lf agecens=%lf agedc=%lf cens=%d %d\n" ,i,ageexmed[i],agecens[i],agedc[i],cens[i],wav[i]);*/ | if (wav[i]>0) printf("i=%d ageex=%lf agecens=%lf agedc=%lf cens=%d %d\n" ,i,ageexmed[i],agecens[i],agedc[i],cens[i],wav[i]);*/ |
| for (i=1;i<=imx ; i++) | for (i=1;i<=imx ; i++) { |
| { | /* mu(a)=mu(agecomp)*exp(teta*(age-agegomp)) |
| if (cens[i] == 1 && wav[i]>1) | mu(a)=x[1]*exp(x[2]*(age-agegomp)); x[1] and x[2] are per year. |
| A=-x[1]/(x[2])*(exp(x[2]*(agecens[i]-agegomp))-exp(x[2]*(ageexmed[i]-agegomp))); | * L= Product mu(agedeces)exp(-\int_ageexam^agedc mu(u) du ) for a death between agedc (in month) |
| * and agedc +1 month, cens[i]=0: log(x[1]/YEARM) | |
| if (cens[i] == 0 && wav[i]>1) | * + |
| * exp(-\int_ageexam^agecens mu(u) du ) when censored, cens[i]=1 | |
| */ | |
| if (wav[i] > 1 || agedc[i] < AGESUP) { | |
| if (cens[i] == 1){ | |
| A=-x[1]/(x[2])*(exp(x[2]*(agecens[i]-agegomp))-exp(x[2]*(ageexmed[i]-agegomp))); | |
| } else if (cens[i] == 0){ | |
| A=-x[1]/(x[2])*(exp(x[2]*(agedc[i]-agegomp))-exp(x[2]*(ageexmed[i]-agegomp))) | A=-x[1]/(x[2])*(exp(x[2]*(agedc[i]-agegomp))-exp(x[2]*(ageexmed[i]-agegomp))) |
| +log(x[1]/YEARM)+x[2]*(agedc[i]-agegomp)+log(YEARM); | +log(x[1]/YEARM) +x[2]*(agedc[i]-agegomp)+log(YEARM); |
| } else | |
| printf("Gompertz cens[%d] neither 1 nor 0\n",i); | |
| /*if (wav[i] > 1 && agecens[i] > 15) {*/ /* ??? */ | /*if (wav[i] > 1 && agecens[i] > 15) {*/ /* ??? */ |
| if (wav[i] > 1 ) { /* ??? */ | L=L+A*weight[i]; |
| L=L+A*weight[i]; | |
| /* printf("\ni=%d A=%f L=%lf x[1]=%lf x[2]=%lf ageex=%lf agecens=%lf cens=%d agedc=%lf weight=%lf\n",i,A,L,x[1],x[2],ageexmed[i]*12,agecens[i]*12,cens[i],agedc[i]*12,weight[i]);*/ | /* printf("\ni=%d A=%f L=%lf x[1]=%lf x[2]=%lf ageex=%lf agecens=%lf cens=%d agedc=%lf weight=%lf\n",i,A,L,x[1],x[2],ageexmed[i]*12,agecens[i]*12,cens[i],agedc[i]*12,weight[i]);*/ |
| } | } |
| } | } |
| /*printf("x1=%2.9f x2=%2.9f x3=%2.9f L=%f\n",x[1],x[2],x[3],L);*/ | /*printf("x1=%2.9f x2=%2.9f x3=%2.9f L=%f\n",x[1],x[2],x[3],L);*/ |
| return -2*L*num/sump; | return -2*L*num/sump; |
| } | } |
| Line 9084 double gompertz(double x[]) | Line 9124 double gompertz(double x[]) |
| /******************* Gompertz_f Likelihood ******************************/ | /******************* Gompertz_f Likelihood ******************************/ |
| double gompertz_f(const gsl_vector *v, void *params) | double gompertz_f(const gsl_vector *v, void *params) |
| { | { |
| double A,B,LL=0.0,sump=0.,num=0.; | double A=0.,B=0.,LL=0.0,sump=0.,num=0.; |
| double *x= (double *) v->data; | double *x= (double *) v->data; |
| int i,n=0; /* n is the size of the sample */ | int i,n=0; /* n is the size of the sample */ |
| Line 9177 int readdata(char datafile[], int firsto | Line 9217 int readdata(char datafile[], int firsto |
| int i=0, j=0, n=0, iv=0, v; | int i=0, j=0, n=0, iv=0, v; |
| int lstra; | int lstra; |
| int linei, month, year,iout; | int linei, month, year,iout; |
| int noffset=0; /* This is the offset if BOM data file */ | |
| char line[MAXLINE], linetmp[MAXLINE]; | char line[MAXLINE], linetmp[MAXLINE]; |
| char stra[MAXLINE], strb[MAXLINE]; | char stra[MAXLINE], strb[MAXLINE]; |
| char *stratrunc; | char *stratrunc; |
| Line 9210 int readdata(char datafile[], int firsto | Line 9251 int readdata(char datafile[], int firsto |
| fprintf(ficlog,"Problem while opening datafile: %s with errno='%s'\n", datafile,strerror(errno));fflush(ficlog);return 1; | fprintf(ficlog,"Problem while opening datafile: %s with errno='%s'\n", datafile,strerror(errno));fflush(ficlog);return 1; |
| } | } |
| i=1; | /* Is it a BOM UTF-8 Windows file? */ |
| /* First data line */ | |
| linei=0; | linei=0; |
| while(fgets(line, MAXLINE, fic)) { | |
| noffset=0; | |
| if( line[0] == (char)0xEF && line[1] == (char)0xBB) /* EF BB BF */ | |
| { | |
| noffset=noffset+3; | |
| printf("# Data file '%s' is an UTF8 BOM file, please convert to UTF8 or ascii file and rerun.\n",datafile);fflush(stdout); | |
| fprintf(ficlog,"# Data file '%s' is an UTF8 BOM file, please convert to UTF8 or ascii file and rerun.\n",datafile); | |
| fflush(ficlog); return 1; | |
| } | |
| /* else if( line[0] == (char)0xFE && line[1] == (char)0xFF)*/ | |
| else if( line[0] == (char)0xFF && line[1] == (char)0xFE) | |
| { | |
| noffset=noffset+2; | |
| printf("# Error Data file '%s' is a huge UTF16BE BOM file, please convert to UTF8 or ascii file (for example with dos2unix) and rerun.\n",datafile);fflush(stdout); | |
| fprintf(ficlog,"# Error Data file '%s' is a huge UTF16BE BOM file, please convert to UTF8 or ascii file (for example with dos2unix) and rerun.\n",datafile); | |
| fflush(ficlog); return 1; | |
| } | |
| else if( line[0] == 0 && line[1] == 0) | |
| { | |
| if( line[2] == (char)0xFE && line[3] == (char)0xFF){ | |
| noffset=noffset+4; | |
| printf("# Error Data file '%s' is a huge UTF16BE BOM file, please convert to UTF8 or ascii file (for example with dos2unix) and rerun.\n",datafile);fflush(stdout); | |
| fprintf(ficlog,"# Error Data file '%s' is a huge UTF16BE BOM file, please convert to UTF8 or ascii file (for example with dos2unix) and rerun.\n",datafile); | |
| fflush(ficlog); return 1; | |
| } | |
| } else{ | |
| ;/*printf(" Not a BOM file\n");*/ | |
| } | |
| /* If line starts with a # it is a comment */ | |
| if (line[noffset] == '#') { | |
| linei=linei+1; | |
| break; | |
| }else{ | |
| break; | |
| } | |
| } | |
| fclose(fic); | |
| if((fic=fopen(datafile,"r"))==NULL) { | |
| printf("Problem while opening datafile: %s with errno='%s'\n", datafile,strerror(errno));fflush(stdout); | |
| fprintf(ficlog,"Problem while opening datafile: %s with errno='%s'\n", datafile,strerror(errno));fflush(ficlog);return 1; | |
| } | |
| /* Not a Bom file */ | |
| i=1; | |
| while ((fgets(line, MAXLINE, fic) != NULL) &&((i >= firstobs) && (i <=lastobs))) { | while ((fgets(line, MAXLINE, fic) != NULL) &&((i >= firstobs) && (i <=lastobs))) { |
| linei=linei+1; | linei=linei+1; |
| for(j=strlen(line); j>=0;j--){ /* Untabifies line */ | for(j=strlen(line); j>=0;j--){ /* Untabifies line */ |
| Line 9332 int readdata(char datafile[], int firsto | Line 9418 int readdata(char datafile[], int firsto |
| return 1; | return 1; |
| } | } |
| anint[j][i]= (double) year; | anint[j][i]= (double) year; |
| mint[j][i]= (double)month; | mint[j][i]= (double)month; |
| /* if( (int)anint[j][i]+ (int)(mint[j][i])/12. < (int) (moisnais[i]/12.+annais[i])){ */ | |
| /* printf("Warning reading data around '%s' at line number %d for individual %d, '%s'\nThe date of interview (%2d/%4d) at wave %d occurred before the date of birth (%2d/%4d).\n",strb, linei,i, line, mint[j][i],anint[j][i], moisnais[i],annais[i]); */ | |
| /* fprintf(ficlog,"Warning reading data around '%s' at line number %d for individual %d, '%s'\nThe date of interview (%2d/%4d) at wave %d occurred before the date of birth (%2d/%4d).\n",strb, linei,i, line, mint[j][i],anint[j][i], moisnais[i],annais[i]); */ | |
| /* } */ | |
| strcpy(line,stra); | strcpy(line,stra); |
| } /* End loop on waves */ | } /* End loop on waves */ |
| Line 9371 int readdata(char datafile[], int firsto | Line 9461 int readdata(char datafile[], int firsto |
| } | } |
| annais[i]=(double)(year); | annais[i]=(double)(year); |
| moisnais[i]=(double)(month); | moisnais[i]=(double)(month); |
| for (j=1;j<=maxwav;j++){ | |
| if( (int)anint[j][i]+ (int)(mint[j][i])/12. < (int) (moisnais[i]/12.+annais[i])){ | |
| printf("Warning reading data around '%s' at line number %d for individual %d, '%s'\nThe date of interview (%2d/%4d) at wave %d occurred before the date of birth (%2d/%4d).\n",strb, linei,i, line, (int)mint[j][i],(int)anint[j][i], j,(int)moisnais[i],(int)annais[i]); | |
| fprintf(ficlog,"Warning reading data around '%s' at line number %d for individual %d, '%s'\nThe date of interview (%2d/%4d) at wave %d occurred before the date of birth (%2d/%4d).\n",strb, linei,i, line, (int)mint[j][i],(int)anint[j][i], j, (int)moisnais[i],(int)annais[i]); | |
| } | |
| } | |
| strcpy(line,stra); | strcpy(line,stra); |
| /* Sample weight */ | /* Sample weight */ |
| Line 10748 int hPijx(double *p, int bage, int fage) | Line 10845 int hPijx(double *p, int bage, int fage) |
| /* for (agedeb=fage; agedeb>=bage; agedeb--){ /\* If stepm=6 months *\/ */ | /* for (agedeb=fage; agedeb>=bage; agedeb--){ /\* If stepm=6 months *\/ */ |
| for (agedeb=bage; agedeb<=fage; agedeb++){ /* If stepm=6 months and estepm=24 (2 years) */ | for (agedeb=bage; agedeb<=fage; agedeb++){ /* If stepm=6 months and estepm=24 (2 years) */ |
| /* nhstepm=(int) rint((agelim-agedeb)*YEARM/stepm); /\* Typically 20 years = 20*12/6=40 *\/ */ | /* nhstepm=(int) rint((agelim-agedeb)*YEARM/stepm); /\* Typically 20 years = 20*12/6=40 *\/ */ |
| nhstepm=(int) rint((agedeb-ageminl)*YEARM/stepm); /* Typically 20 years = 20*12/6=40 */ | nhstepm=(int) rint((agedeb-ageminl)*YEARM/stepm+0.1)-1; /* Typically 20 years = 20*12/6=40 or 55*12/24=27.5-1.1=>27 */ |
| nhstepm = nhstepm/hstepm; /* Typically 40/4=10, because estepm=24 stepm=6 => hstepm=24/6=4 */ | nhstepm = nhstepm/hstepm; /* Typically 40/4=10, because estepm=24 stepm=6 => hstepm=24/6=4 or 28*/ |
| /* nhstepm=nhstepm*YEARM; aff par mois*/ | /* nhstepm=nhstepm*YEARM; aff par mois*/ |
| Line 11070 int main(int argc, char *argv[]) | Line 11167 int main(int argc, char *argv[]) |
| noffset=noffset+3; | noffset=noffset+3; |
| printf("# File is an UTF8 Bom.\n"); // 0xBF | printf("# File is an UTF8 Bom.\n"); // 0xBF |
| } | } |
| else if( line[0] == (char)0xFE && line[1] == (char)0xFF) | /* else if( line[0] == (char)0xFE && line[1] == (char)0xFF)*/ |
| else if( line[0] == (char)0xFF && line[1] == (char)0xFE) | |
| { | { |
| noffset=noffset+2; | noffset=noffset+2; |
| printf("# File is an UTF16BE BOM file\n"); | printf("# File is an UTF16BE BOM file\n"); |
| Line 11158 int main(int argc, char *argv[]) | Line 11256 int main(int argc, char *argv[]) |
| } | } |
| if((num_filled=sscanf(line,"model=1+age%[^.\n]", model)) !=EOF){ | if((num_filled=sscanf(line,"model=1+age%[^.\n]", model)) !=EOF){ |
| if (num_filled != 1){ | if (num_filled != 1){ |
| printf("ERROR %d: Model should be at minimum 'model=1+age' %s\n",num_filled, line); | printf("ERROR %d: Model should be at minimum 'model=1+age+' instead of '%s'\n",num_filled, line); |
| fprintf(ficlog,"ERROR %d: Model should be at minimum 'model=1+age' %s\n",num_filled, line); | fprintf(ficlog,"ERROR %d: Model should be at minimum 'model=1+age+' instead of '%s'\n",num_filled, line); |
| model[0]='\0'; | model[0]='\0'; |
| goto end; | goto end; |
| } | } |
| Line 11845 Interval (in months) between two waves: | Line 11943 Interval (in months) between two waves: |
| ximort[i][j]=(i == j ? 1.0 : 0.0); | ximort[i][j]=(i == j ? 1.0 : 0.0); |
| } | } |
| /*p[1]=0.0268; p[NDIM]=0.083;*/ | p[1]=0.0268; p[NDIM]=0.083; |
| /*printf("%lf %lf", p[1], p[2]);*/ | /* printf("%lf %lf", p[1], p[2]); */ |
| #ifdef GSL | #ifdef GSL |
| Line 11972 Interval (in months) between two waves: | Line 12070 Interval (in months) between two waves: |
| printf("%f [%f ; %f]\n",p[i],p[i]-2*sqrt(matcov[i][i]),p[i]+2*sqrt(matcov[i][i])); | printf("%f [%f ; %f]\n",p[i],p[i]-2*sqrt(matcov[i][i]),p[i]+2*sqrt(matcov[i][i])); |
| fprintf(ficlog,"%f [%f ; %f]\n",p[i],p[i]-2*sqrt(matcov[i][i]),p[i]+2*sqrt(matcov[i][i])); | fprintf(ficlog,"%f [%f ; %f]\n",p[i],p[i]-2*sqrt(matcov[i][i]),p[i]+2*sqrt(matcov[i][i])); |
| } | } |
| lsurv=vector(1,AGESUP); | lsurv=vector(agegomp,AGESUP); |
| lpop=vector(1,AGESUP); | lpop=vector(agegomp,AGESUP); |
| tpop=vector(1,AGESUP); | tpop=vector(agegomp,AGESUP); |
| lsurv[agegomp]=100000; | lsurv[agegomp]=100000; |
| for (k=agegomp;k<=AGESUP;k++) { | for (k=agegomp;k<=AGESUP;k++) { |
| Line 12021 Please run with mle=-1 to get a correct | Line 12119 Please run with mle=-1 to get a correct |
| stepm, weightopt,\ | stepm, weightopt,\ |
| model,imx,p,matcov,agemortsup); | model,imx,p,matcov,agemortsup); |
| free_vector(lsurv,1,AGESUP); | free_vector(lsurv,agegomp,AGESUP); |
| free_vector(lpop,1,AGESUP); | free_vector(lpop,agegomp,AGESUP); |
| free_vector(tpop,1,AGESUP); | free_vector(tpop,agegomp,AGESUP); |
| free_matrix(ximort,1,NDIM,1,NDIM); | free_matrix(ximort,1,NDIM,1,NDIM); |
| free_ivector(dcwave,firstobs,lastobs); | free_ivector(dcwave,firstobs,lastobs); |
| free_vector(agecens,firstobs,lastobs); | free_vector(agecens,firstobs,lastobs); |
| Line 12224 Please run with mle=-1 to get a correct | Line 12322 Please run with mle=-1 to get a correct |
| fputs(line,stdout); | fputs(line,stdout); |
| fputs(line,ficparo); | fputs(line,ficparo); |
| fputs(line,ficlog); | fputs(line,ficlog); |
| fputs(line,ficres); | |
| continue; | continue; |
| }else | }else |
| break; | break; |
| Line 12269 Please run with mle=-1 to get a correct | Line 12368 Please run with mle=-1 to get a correct |
| fputs(line,stdout); | fputs(line,stdout); |
| fputs(line,ficparo); | fputs(line,ficparo); |
| fputs(line,ficlog); | fputs(line,ficlog); |
| fputs(line,ficres); | |
| continue; | continue; |
| }else | }else |
| break; | break; |
| Line 12294 Please run with mle=-1 to get a correct | Line 12394 Please run with mle=-1 to get a correct |
| fputs(line,stdout); | fputs(line,stdout); |
| fputs(line,ficparo); | fputs(line,ficparo); |
| fputs(line,ficlog); | fputs(line,ficlog); |
| fputs(line,ficres); | |
| continue; | continue; |
| }else | }else |
| break; | break; |
| Line 12327 Please run with mle=-1 to get a correct | Line 12428 Please run with mle=-1 to get a correct |
| fputs(line,stdout); | fputs(line,stdout); |
| fputs(line,ficparo); | fputs(line,ficparo); |
| fputs(line,ficlog); | fputs(line,ficlog); |
| fputs(line,ficres); | |
| continue; | continue; |
| }else if(sscanf(line,"prevforecast=%[^\n]\n",modeltemp)) | }else if(sscanf(line,"prevforecast=%[^\n]\n",modeltemp)) |
| parameterline=11; | parameterline=11; |
| Line 12350 Please run with mle=-1 to get a correct | Line 12452 Please run with mle=-1 to get a correct |
| prvforecast = 1; | prvforecast = 1; |
| } | } |
| else if((num_filled=sscanf(line,"prevforecast=%d yearsfproj=%lf mobil_average=%d\n",&prevfcast,&yrfproj,&mobilavproj)) !=EOF){/* && (num_filled == 3))*/ | else if((num_filled=sscanf(line,"prevforecast=%d yearsfproj=%lf mobil_average=%d\n",&prevfcast,&yrfproj,&mobilavproj)) !=EOF){/* && (num_filled == 3))*/ |
| printf(" Num_filled=%d, yearsfproj=%lf, mobil_average=%d\n",prevfcast,yrfproj,mobilavproj); | printf("prevforecast=%d yearsfproj=%lf.2 mobil_average=%d\n",prevfcast,yrfproj,mobilavproj); |
| fprintf(ficlog,"prevforecast=%d yearsfproj=%lf.2 mobil_average=%d\n",prevfcast,yrfproj,mobilavproj); | |
| fprintf(ficres,"prevforecast=%d yearsfproj=%lf.2 mobil_average=%d\n",prevfcast,yrfproj,mobilavproj); | |
| prvforecast = 2; | prvforecast = 2; |
| } | } |
| else { | else { |
| Line 12371 Please run with mle=-1 to get a correct | Line 12475 Please run with mle=-1 to get a correct |
| prvbackcast = 1; | prvbackcast = 1; |
| } | } |
| else if((num_filled=sscanf(line,"prevbackcast=%d yearsbproj=%lf mobil_average=%d\n",&prevbcast,&yrbproj,&mobilavproj)) ==3){/* && (num_filled == 3))*/ | else if((num_filled=sscanf(line,"prevbackcast=%d yearsbproj=%lf mobil_average=%d\n",&prevbcast,&yrbproj,&mobilavproj)) ==3){/* && (num_filled == 3))*/ |
| printf(" Num_filled=%d, yearsbproj=%lf, mobil_average=%d\n",prevbcast,yrbproj,mobilavproj); | printf("prevbackcast=%d yearsbproj=%lf.2 mobil_average=%d\n",prevbcast,yrbproj,mobilavproj); |
| fprintf(ficlog,"prevbackcast=%d yearsbproj=%lf.2 mobil_average=%d\n",prevbcast,yrbproj,mobilavproj); | |
| fprintf(ficres,"prevbackcast=%d yearsbproj=%lf.2 mobil_average=%d\n",prevbcast,yrbproj,mobilavproj); | |
| prvbackcast = 2; | prvbackcast = 2; |
| } | } |
| else { | else { |
| Line 12380 Please run with mle=-1 to get a correct | Line 12486 Please run with mle=-1 to get a correct |
| goto end; | goto end; |
| } | } |
| break; | break; |
| /* /\*fscanf(ficpar,"backcast=%d starting-back-date=%lf/%lf/%lf final-back-date=%lf/%lf/%lf mobil_average=%d\n",&backcast,&jback1,&mback1,&anback1,&jback2,&mback2,&anback2,&mobilavproj);*\/ */ | |
| /* if((num_filled=sscanf(line,"backcast=%d starting-back-date=%lf/%lf/%lf final-back-date=%lf/%lf/%lf mobil_average=%d\n",&backcast,&jback1,&mback1,&anback1,&jback2,&mback2,&anback2,&mobilavproj)) !=EOF){ */ | |
| /* if (num_filled != 8) { */ | |
| /* printf("Error: Not 8 (data)parameters in line but %d, for example:backcast=1 starting-back-date=1/1/1990 final-back-date=1/1/1970 mobil_average=1\n, your line=%s . Probably you are running an older format.\n",num_filled,line); */ | |
| /* fprintf(ficlog,"Error: Not 8 (data)parameters in line but %d, for example:backcast=1 starting-back-date=1/1/1990 final-back-date=1/1/1970 mobil_average=1\n, your line=%s . Probably you are running an older format.\n",num_filled,line); */ | |
| /* goto end; */ | |
| /* } */ | |
| /* printf("backcast=%d starting-back-date=%.lf/%.lf/%.lf final-back-date=%.lf/%.lf/%.lf mobil_average=%d\n",backcast,jback1,mback1,anback1,jback2,mback2,anback2,mobilavproj); */ | |
| /* fprintf(ficparo,"backcast=%d starting-back-date=%.lf/%.lf/%.lf final-back-date=%.lf/%.lf/%.lf mobil_average=%d\n",backcast,jback1,mback1,anback1,jback2,mback2,anback2,mobilavproj); */ | |
| /* fprintf(ficlog,"backcast=%d starting-back-date=%.lf/%.lf/%.lf final-back-date=%.lf/%.lf/%.lf mobil_average=%d\n",backcast,jback1,mback1,anback1,jback2,mback2,anback2,mobilavproj); */ | |
| /* fprintf(ficres,"backcast=%d starting-back-date=%.lf/%.lf/%.lf final-back-date=%.lf/%.lf/%.lf mobil_average=%d\n",backcast,jback1,mback1,anback1,jback2,mback2,anback2,mobilavproj); */ | |
| /* /\* day and month of proj2 are not used but only year anproj2.*\/ */ | |
| /* dateback1=anback1+(mback1-1)/12.+(jback1-1)/365.; */ | |
| /* dateback2=anback2+(mback2-1)/12.+(jback2-1)/365.; */ | |
| /* } */ | |
| /* break; */ | |
| case 13: | case 13: |
| if((num_filled=sscanf(line,"result:%[^\n]\n",resultline)) !=EOF){ | if((num_filled=sscanf(line,"result:%[^\n]\n",resultline)) !=EOF){ |
| if (num_filled == 0){ | if (num_filled == 0){ |
| Line 12419 Please run with mle=-1 to get a correct | Line 12509 Please run with mle=-1 to get a correct |
| fprintf(ficres,"result: %s\n",resultline); | fprintf(ficres,"result: %s\n",resultline); |
| fprintf(ficlog,"result: %s\n",resultline); | fprintf(ficlog,"result: %s\n",resultline); |
| break; | break; |
| case 14: | case 14: |
| if(ncovmodel >2 && nresult==0 ){ | printf("Error: Unknown command '%s'\n",line); |
| fprintf(ficlog,"Error: Unknown command '%s'\n",line); | |
| if(ncovmodel >=2 && nresult==0 ){ | |
| printf("ERROR: no result lines! It should be at minimum 'result: V2=0 V1=1 or result:.' %s\n",line); | printf("ERROR: no result lines! It should be at minimum 'result: V2=0 V1=1 or result:.' %s\n",line); |
| goto end; | fprintf(ficlog,"ERROR: no result lines! It should be at minimum 'result: V2=0 V1=1 or result:.' %s\n",line); |
| } | } |
| /* goto end; */ | |
| break; | break; |
| default: | default: |
| nresult=1; | nresult=1; |