How to disable scientific notation?

前端 未结 1 1914
感情败类
感情败类 2020-11-22 04:37

I have a dataframe with a column of p-values and I want to make a selection on these p-values.

> pvalues_anova
[1] 9.693919e-01 9.781728e-01 9.918415e-01         


        
1条回答
  •  北海茫月
    2020-11-22 04:58

    You can effectively remove scientific notation in printing with this code:

    options(scipen=999)
    

    0 讨论(0)
提交回复
热议问题