我有一个CSV数据框,如下所示:
SNPID,chr,position,coded_all,noncoded_all,beta,SE,pval
rs10,7,92221824,a,c,0.0176,0.0182,0.3333
rs1000000,12,125456933,a,g,0.0195,0.0076,0.009999
rs10000010,4,21227772,t,c,0.0077,0.0062,0.215
rs10000012,4,1347325,c,g,0.0098,0.0093,0.2901
pval
列中的值范围为0-1,其中许多都是科学记数法。当我使用readr
pval
作为numeric
将其导入R时,pval
中科学中的值不会仅作为数字出现。例如,9.996e-003
仅显示为9.996
。
为了解决这个问题,我使用p-val
作为字符导入了数据框,并使用as.numeric
将其强制转换为数字。这仍然导致了同样的问题。还有其他方法吗?
答案 0 :(得分:1)
<admin-component *ngIf="user.isAdmin"></admin-component>