最近在学习使用APC模型,查找了一些资料,但基础较薄弱,很多资料看不懂,希望获得前辈帮助解释下面的程序是什么意思?或者欢迎qq交流2105675144。
#delim ;
apc_ie death_f if age<=90,
  age(age) period(year) cohort(cohort) family(poisson) link(log) 
  exposure(exp_f) scale(x2);
apc_cglim death_f if age<=90,
  age(age) period(year) cohort(cohort)
  agepfx("_A") periodpfx("_P") cohortpfx("_C")
  family(poisson) link(log) 
  exposure(exp_f) scale(x2) constraint("a5=a10");
drop _A* _P* _C*;
apc_cglim death_f if age<=90,
  age(age) period(year) cohort(cohort)
  agepfx("_A") periodpfx("_P") cohortpfx("_C")
  family(poisson) link(log) 
  exposure(exp_f) scale(x2) constraint("p1965=p1960");
drop _A* _P* _C*;
apc_cglim death_f if age<=90,
  age(age) period(year) cohort(cohort)
  agepfx("_A") periodpfx("_P") cohortpfx("_C")
  family(poisson) link(log) 
  exposure(exp_f) scale(x2) constraint("c1995=c1990");
drop _A* _P* _C*;
#delim cr