I'm using the lsmeans
R package, and I'm doing a simple pairwise comparison between two groups. Is there a way to get the exact p.value
in scientific notation rather than the estimate? I've tried setting options(scipen=100000000000), without luck. It just shows 0.000000e+00 when I do so.
lsmeans(fit,pairwise~type+age,at=list(age=c("40","50","60")),adjust="mvt")
$contrasts
contrast estimate SE df t.ratio p.value
1 - 2 -0.084728198 0.002606520 59346 -32.506 <.0001
1 - 3 -0.269773787 0.002146597 59346 -125.675 <.0001
1 - 4 -0.002048158 0.001896132 59346 -1.080 0.6824
2 - 3 -0.185045589 0.002406580 59346 -76.892 <.0001
2 - 4 0.082680040 0.002211575 59346 37.385 <.0001
3 - 4 0.267725629 0.001064637 59346 251.471 <.0001