About the dplyr package installation
Title
Question
i have already installed packages like dplyr and magittr
but it is still showing erroe as
> library(dplyr)
Error: package or namespace load failed for ‘dplyr’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘magrittr’
R More-Functions-in-dplyr-Package 04-05 min 10-20 sec
Answers:
Try installing "tidyverse" package, with dependencies set to "TRUE" -
install.packages("tidyverse",dependencies=T)
Then try again after loading both "dplyr" and "magrittr" packages.
Login to add comment