Skip to content
Prev 3080 / 20628 Next

Extracting p-values from an lme object (any help would be appreciated)

On Wed, 25 Nov 2009, Ben Bolker wrote:

            
Or perhaps more simply,

pt(t, df, lower.tail)

gives you the p-value associated with a given t-value and its degrees of
freedom. lower.tail is whether you want the p below the t-value (usually you
want this when p is negative), or above. Multiply by 2 for a 2-tailed test.

summary() is almost certainly just calling pt().

--Adam