No matching definitions.

stats/fmt

src/stats/fmt.tur
defn

test->str

(test->str [r :int] :cstr)

format a test-result as a string (R-style).

r:int test-result handle

:cstr formatted summary. The string is malloc'd; caller frees.

Since: ST5

defn

fit->str

(fit->str [fit :int] :cstr)

format an lm-fit summary as a string.

fit:int lm-fit handle

:cstr formatted summary. Caller frees.

Since: ST7

defn

fit-coefs-frame

(fit-coefs-frame [fit :int] :int)

return a frame with columns: name, estimate, se, t, p.

fit:int lm-fit handle

:int frame handle.

Since: ST7