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
You can effectively remove scientific notation in printing with this code:
options(scipen=999)