8/8
8/8
.. embarrassing that Swiss official news casts on the Sechseläuten use this yearly being seemingly serious about its predictive power ... horrifying me every year.
.. embarrassing that Swiss official news casts on the Sechseläuten use this yearly being seemingly serious about its predictive power ... horrifying me every year.
x <- c("10.1", "74%", "23*")
as.numeric(x)
[1] 10.1 NA NA
Warning message:
NAs introduced by coercion
readr::parse_number(x)
[1] 10.1 74.0 23.0
x <- c("10.1", "74%", "23*")
as.numeric(x)
[1] 10.1 NA NA
Warning message:
NAs introduced by coercion
readr::parse_number(x)
[1] 10.1 74.0 23.0