boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - Help with print function in R
相关主题
如何根据cdf(比较复杂,不能求微分)求其pdf
SAS format 的问题
如何计算normal distribution function的cdf numerically?
R 求助
关于R里的ANOVA function aov
R 里面有什么好的function 计算deretive?
请教 C++ 里面 optmization 函数及其用法
Help needed! What sas function can read char. date HH:DD:SS:SSS to numeric?
请问个macro问题
Predict values of vectors generated by black box functions
相关话题的讨论汇总
话题: print话题: function话题: desired话题: output话题: your
进入Statistics版参与讨论
1 (共1页)
y***6
发帖数: 46
1
Hi all,
I got a question about using print function in R.
If I have a vector, whose elements are numerical values in scientific
notation, e.g.
a=[1.0998e-01 -0.31567e-02]
The desired output is:
a=[0.10998 -0.031567].
How do I change options in print function to get the desired output? Or,
is there any other way to achieve the goal? Your help is greatly appreciated
.
F****r
发帖数: 151
2
print(noquote(format(a, scientific=FALSE)))
y***6
发帖数: 46
3
Thanks,Foster. It works!
1 (共1页)
进入Statistics版参与讨论
相关主题
Predict values of vectors generated by black box functions
R function 求和问题
怎样在data step跳过格式不对的data record?
请教各位高人2个SAS作图的技巧性小问题,多谢多谢啦。
问一个概率题
求高手指教,这个随机过程是Winner Process吗?
请教一个R问题
求问一个matlab的问题
请教要不要从GWU转到NCSU去?
问个matrix的操作问题
相关话题的讨论汇总
话题: print话题: function话题: desired话题: output话题: your