Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在 R 中尝试对数对数图,但是当我获取特定值的对数时,我没有得到一致的答案,例如:
In R: > log(192.4) [1] 5.259577 On my phone: 2.28 On a web scientific calculator I get: 2.2842050677018
是什么导致了 R 和其他计算器之间的不一致?哪一个是正确的使用?
我用的科学计算器。
与许多其他编程语言一样,R 计算自然对数,即使用e带函数的基数log()。如果你想要以 10 为底的对数,你需要使用log10():
e
log()
log10()
log(192.4) [1] 5.259577 log10(192.4) [1] 2.284205
这以及更多内容都记录在帮助中?log
?log