in Technology by

Suppose that I want to convert factor to number. I write the following code:

Please log in or register to answer this question.

1 Answer

0 votes
by

fac <- factor(c(2.3, 1.5, 3, 4.9)) as.numeric(fac)

Related questions

...