-1

I am getting a p-value of < 2.2e-16 for my coefficient in R, but I was wondering if I can say in my write up that it is asymptotically zero? Do these have the same meaning? What would I need to say the later?

Dylan
  • 1
  • Closely related: https://stats.stackexchange.com/questions/78839/how-should-tiny-p-values-be-reported-and-why-does-r-put-a-minimum-on-2-22e-1 – Sycorax Feb 02 '21 at 00:40
  • This is just the limit r put on p-values in your output and is different from "asymptotically zero". – Anna Docherty Feb 02 '21 at 01:04

1 Answers1

0

To turn off scientific notation "e-notation" in R type the following function before running your analysis: options(scipen=999)

Ari Alex
  • 11
  • 2