r - function to get the power of a number -


looking way floating point number power of 10 noted

6.45e-8 - 8

3.21e-4 4

0.013 2

or minus in

is ther e function following instead of multiplying 6.45e_8 @ first dividing 1e-8 , multiply (6.45e-8/1e8=...).

how

floor(log10(x)) 

? log10 computes log base 10, floor finds next smaller integer.


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -