I want to calculate the value of (1e-6)^84, but in R/R64, the result is 0, which would cause some problem when applying log10 function on it.
Is there anyway to solve this problem?
|
I want to calculate the value of Is there anyway to solve this problem? |
||||
|
Depends what problem you are actually trying to solve. Do you care about the value of log(teeenytinynumber)? If not, replace the zero values with NA and keep going. If you do, figure out if there's a better way than following a giant exponent with a log function. Which is to say, simplify your algorithm before crunching numbers. |
|||
|
|
84 * log10(1e-6) = 84 * (-6) = -504? – Blender May 26 '12 at 19:55machine-learningtag? As suggested/hinted by others here, giving a little bit more context would help you get better answers ... – Ben Bolker May 27 '12 at 19:45