Error in eval(expr, envir, enclos) : object not found

Don’t know why @Janos deleted his answer, but it’s correct: your data frame Train doesn’t have a column named pre. When you pass a formula and a data frame to a model-fitting function, the names in the formula have to refer to columns in the data frame. Your Train has columns called residual.sugar, total.sulfur, alcohol and quality. You need to change either your formula or … Read more

Categories r Tags

dplyr: “Error in n(): function should not be called directly”

I presume you have dplyr and plyr loaded in the same session. dplyr is not plyr. ddply is not a function in the dplyr package. Both dplyr and plyr have the functions summarise/summarize. Look at the results of conflicts() to see masked objects.

Categories r Tags

“non-numeric argument to binary operator” error in R

I’ve been trying to run this function and the “non-numeric argument to binary operator” pops up. I’ve seen quite a few questions similar to mine, yet I still can’t figure out what is the issue with my code. The error happens on the sixth line Itl[j] <- (Itl[j] + incrm[j]) %% N. The code for the … Read more

Categories R Tags

Error: attempt to use zero-length variable name

I’ve posted an issue on dplyr github page. I can reproduce the results using the code below. It has to do with whether the csv contains a column of rownames without a header. read_csv and read.csv handle this differently, thus producing differing results with filter. First the case when it works write_csv to read_csv or read.csv; both work fine with filter Now for when it fails … Read more

Categories R Tags