Replaces a object with the base 10 exponent of value.

log10(x) <- value

Arguments

x

An object.

value

A numeric atomic object.

Value

Called for the side effect of updating x.

Details

A wrapper on exp10(value).

See also

Other translations: exp10(), exp2(), fabs(), ilog10(), ilog2(), ilogit(), ilog(), inv_logit(), invlogit(), log2<-(), log<-(), logit<-(), logit(), phi(), pow(), step()

Examples

x <- NULL
log10(x) <- c(0.5, 5)
x
#> [1] 3.162278e+00 1.000000e+05