We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm running an ffdfdply operation. Something like this...
TrainingData<-ffdfdply(x=TrainingData,split=TrainingData$id, FUN=function(x) {x$Predicted<-predict(Model,newdata=x, type="vector") x$Segment<-predict(Model2, newdata=x) x})
Turns out that I have periods (.) in my column names. That makes ffdfdply (and some other things like merge.ffdf) error out and give this message.
Error: is.null(names(x)) is not TRUE
The text was updated successfully, but these errors were encountered:
Do you have a reproducible example of this?
Sorry, something went wrong.
As a side note: working on ffbase2 (see http://github.com/edwindj/ffbase2). Your code would translate to:
ffbase2
TrainingData <- TrainingData %>% group_by(id) %>% do( Predicted = predict(Model, newdata=., type="vector") , Segment = predict(Model2, newdata=.) )
No branches or pull requests
I'm running an ffdfdply operation. Something like this...
Turns out that I have periods (.) in my column names. That makes ffdfdply (and some other things like merge.ffdf) error out and give this message.
The text was updated successfully, but these errors were encountered: