Fix in R: non-numeric argument to binary operator
One error you may encounter in R is: Error in df$var1- df$var2: non-numeric argument to binary operator This error occurs when you attempt to perform some on two vectors and one of the vectors is non-numeric. Examples of binary operations include: Subtraction (–) Addition (+) Multiplication (*) Division (/) This error occurs most often when […]
Fix in R: non-numeric argument to binary operator Read More »