Skip to content
Snippets Groups Projects
Commit e3c9ab72 authored by Isabelle Sanchez's avatar Isabelle Sanchez
Browse files

correc erreur syntaxe .data rlang

parent 94500ce1
No related branches found
No related tags found
No related merge requests found
Pipeline #53356 failed
......@@ -502,7 +502,7 @@ kafino_fit<-function(datain,Tvar,Yvar,
prediction,label_pred,lwr,upr,flag)
# join dt.pred with the initial datain containing all the observations
dt.out<-left_join(datain,dt.pred,by=c(.data[["rowNum"]]))
dt.out<-left_join(datain,dt.pred,by=c(.data$rowNum))
dt.out<-mutate(dt.out,flag=if_else(.data$flag1 == "Bad", .data$flag1, .data$flag))
dt.out<-arrange(dt.out,.data$rowNum)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment