由买买提看人间百态

topics

全部话题 - 话题: nbins
(共0页)
g****g
发帖数: 1828
1
const int nbins = 13;
double xbin[nbins+1];
for (int i=0;i xbin[i]= 10.0*i;
here's the message, but the line number is incorrect; it's far from the line
where this array is located.
Limitation: Statement too long FILE:drawRatios4.C LINE:96
cint: Security mode 0x7:0x2 *** Fatal error in interpreter... restarting
interpreter ***
*** Fatal error in interpreter... restarting interpreter ***
g****g
发帖数: 1828
2
多谢大家! 我找到了错误的原因。忘了说,上面那段code原来全在global variable的
部分。
我这样做就没问题了,把他们放在不同的地方:
//这部分仍然放在global
const int nbins = 13;
//这部分转移到第一个被调用的function的最前面部分。
//(其实任何用到该array前都可以,我觉得。但放在开头清楚些。)
double xbin[nbins+1];
for (int i=0;i xbin[i]= 10.0*i;
f*****r
发帖数: 70
3
用proc genmod fit了一个nbin的GLM model,用的是log link。检查了actual和
prediction的mean和distribution,没什么问题。
可是plot了predicted value和actual value,发现不在对角线线上(如图所示)。 具
体为,在接近0的时候,over predict比较严重。
请指教一下问题可能出在哪呢?
(共0页)