search for: gheight

Displaying 4 results from an estimated 4 matches for "gheight".

Did you mean: height
2006 Jul 04
0
who can explain the difference between the R and SAS on the results of GLM
Dear friends, I used R and SAS to analyze my data through generalized linear model, and there is some difference between them. Results from R: glm(formula = snail ~ grass + gheight + humidity + altitude + soiltemr + airtemr, family = Gamma) Deviance Residuals: Min 1Q Median 3Q Max -1.23873 -0.41123 -0.08703 0.24339 1.21435 Coefficients: Estimate Std. Error t value Pr(>|t|) (Intercept) 2.024e-02 1.655e-02...
2006 Jul 08
0
which model (GLMs)is the best?
Dear friends, I used R to analyze my data with the models of generalized linear models, and found three models were relatively good, but i can't decide which is the best,how should i do ? *Model1:* glm(formula = snail ~ grass + gheight + humidity + altitude + soiltem + airtem + grass:altitude, *family = Gamma(link = inverse*), data = model, na.action = na.exclude, control = list(epsilon = 1e-04, maxit = 50, trace = T)) (Dispersion parameter for Gamma family taken to be 0.2644025) Null deviance: 63.635 on 161 deg...
2006 Jul 03
2
could i change the ouput style on summary?
Dear friends, summary() doesn't give a good ouput style,e.g.: grass soiltem airtem gheight humidity altitude diluo :38 Min. :15.90 Min. :17.70 Min. : 8.00 Min. : 0.2360 high: 43 huanghuacai:32 1st Qu.:19.32 1st Qu.:22.60 1st Qu.:40.00 1st Qu.: 0.3190 low :119 hucao :46 Median :20.20 Median :25.30 Median :60.00 Median : 0.3399 yuhao...
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...f.bytes_per_pixel; } typedef unsigned long console_ch_t; diff --git a/curses.c b/curses.c --- a/curses.c +++ b/curses.c @@ -97,13 +97,13 @@ } } -static void curses_resize(DisplayState *ds, int w, int h) +static void curses_resize(DisplayState *ds) { - if (w == gwidth && h == gheight) + if (ds_get_width(ds) == gwidth && ds_get_height(ds) == gheight) return; - gwidth = w; - gheight = h; + gwidth = ds_get_width(ds); + gheight = ds_get_height(ds); curses_calc_pad(); } @@ -169,8 +169,8 @@ clear(); refresh(); curse...