In order to compare income in Norway to other countries, currency conversions might be necessary. This function multiplies with the rate provided.

income_nok2other(x, rate = 0.1)

Arguments

x

currency

rate

currency translation rate (defaul 0.10 for euro)

Value

numeric

Examples

income_nok2other(c(100, 2930, 13649))
#> [1]   10.0  293.0 1364.9
income_nok2other(c(100, 2930, 13649), 0.5)
#> [1]   50.0 1465.0 6824.5