以科学计数法显示

以科学计数法显示

This question already has answers here:
How can I paste 100000 without it being shortened to 1e+05? [duplicate]

(3个答案)


6年前关闭。




函数的结果以科学计数法显示,我想将其更改回正常状态,但是仅对于该函数,我不想更改全局设置。有人可以帮忙吗?

最佳答案

你可以做:

format(functionResult, scientific=FALSE);

要么:
as.integer(functionResult);

关于r - R以科学计数法显示数字,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21509346/

10-12 19:22