search for: tflo

Displaying 2 results from an estimated 2 matches for "tflo".

Did you mean: flo
2000 Jan 08
2
MASS glm.nb: Offset fails
...984). However, I need to use offset, but that failed. I am not (yet --- hopefully) fluent enough in R to be able to debug the code, but it seems that the problem comes in expanding `...' in the glm.nb call. The first time this goes smoothly: Call <- match.call() expands to (formula = TFLO ~ poly(PH, 2), offset = log(TOT)) which was my exact call. However, the second time fails: m <- match.call(expand = FALSE) expands to (formula = TFLO ~ poly(PH, 2), ... = list(offset = log(TOT))), and now the following commad will remove `... = list(offset = log(TOT))': m$method &l...
2009 Jul 17
19
I need help saving table data from a rake task
I need to find out how I can create and save a large dataset to a table based on multiple returned arrays from a Rake task. Here is my example using just two arrays (there are 14 in this particular rake task): update_tsos_offense = TsosOffense.new to_team_id, to_ppcs = update_tsos_offense.calculate_tsos(TotalOffense, "ydspgm", "desc") ro_team_id, ro_ppcs =