由买买提看人间百态

topics

全部话题 - 话题: 000000e
(共0页)
h******1
发帖数: 94
1
来自主题: Statistics版 - FDR-AME
http://www.bioconductor.org/packages/2.3/bioc/html/fdrame.html
If I run FDR-AME, I get adjusted p-values:
[1] 9.000000e-02 9.000000e-02 9.000000e-02 9.000001e-02 9.000000e-02 9.
000000e-02 9.000000e-02
[8] 9.000000e-02 9.000000e-02 9.000000e-02 9.000000e-02 9.000000e-02 9.
000000e-02 9.000000e-02
[15] 9.000000e-02 9.000000e-02 9.000000e-02 9.000000e-02 9.000000e-02 9.
000000e-02 9.000000e-02
[22] 9.000000e-02 9.000000e-02 9.000000e-02 9.000000e-02 9.000000e-02 9.
000000e-02 9.000000e-02
[29] 9
g*********s
发帖数: 1782
2
来自主题: Programming版 - RH3/RH4上cout默认格式问题
#include
#include
#include
#include
int main(){
float f = 0.0001;
printf("f = %f\n", f);
printf("f = %g\n", f);
printf("f = %e\n", f);
std::cout <<"f = "< std::cout.setf(std::ios_base::fmtflags(0), std::ios_base::floatfield);
std::cout <<"f = "< }
RH3:
f = 0.000100
f = 1e-04
f = 1.000000e-04
f = 1e-04
f = 1e-04
RH4:
f = 0.000100
f = 0.0001
f = 1.000000e-04
f = 0.0001
f = 0.0001
有啥办法统一格式么?机器是RH3/RH4都有。改程序也
(共0页)