0
> 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’

1
  • 2
    have you tried installing the package zip which the error says is missing? Commented Jun 1, 2019 at 19:05

1 Answer 1

1

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!

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.