Decimal points - Probability value of 0 in Language R
问题 How to treat p value in R ? I am expecting very low p values like: 1.00E-80 I need to -log10 -log10(1.00E-80) -log10(0) is Inf, but Inf at sense of rounding too. But is seems that after 1.00E-308, R yields 0. 1/10^308 [1] 1e-308 1/10^309 [1] 0 Is the accuracy of p-value display with lm function the same as the cutoff point, 1e-308, or it is just designed such that we need a cutoff point and I need to consider a different cutoff point - such as 1e-100 (for example) to replace 0 with <1e-100.