W. Mooi
W. Mooi

Reputation: 119

Error could not find function "pull" in R

I want to make an eventlog object in R with the bupaR / edeaR package. But I get an error message:

Error in function_list[i] : could not find function "pull"

Function pull is from the package git2r, but I dont even need this package to make an eventlog. Even when I activate package git2r and try to do the same, another error message comes up:

Error in (function (classes, fdef, mtable) : unable to find an inherited method for function ‘pull’ for signature ‘"eventlog"’.

This is my code:

total2 <- eventlog(eventlog = total, 
          case_id = "Klantnummer",
          activity_id = "activiteit",
          activity_instance_id = "activiteit_id",
          lifecycle_id = "status",
          timestamp = "datum_beoordeling",
          resource_id = "Kanaal")

What am I doing wrong?

Upvotes: 1

Views: 3628

Answers (1)

Gert Janssenswillen
Gert Janssenswillen

Reputation: 56

You should update your dplyr-version to 0.7.0 which includes the pull function. It seems that bupaR does not specifically states this dependency.

Upvotes: 1

Related Questions