> library(ez) Error: package or namespace load failed for ‘ez’ in loadNamespace

> library(ez)

Error: package or namespace load failed for ‘ez’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): there is no package called ‘zip’

Upvotes: 0

Views: 965

Answers (1)

DSGym
DSGym

Reputation: 2867

You have to install the zip package manually and it will work.

install.packages("zip")
install.packages("ez")

library(ez)

Warning message: Paket ‘ez’ wurde unter R Version 3.5.3 erstellt

Should work!

Upvotes: 1

Related Questions