error in loading package arulesViz in windows 8 - r

when I try to load package arulesViz I am getting following error.
> library('arulesViz')
Loading required package: grid
Error: package or namespace load failed for ‘arulesViz’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
there is no package called ‘iterators’
>library('iterators')
Error in library("iterators") : there is no package called ‘iterators’

install.packages("arulesViz", dependencies = TRUE)
This wil help resolve the error

Related

Why am I getting while loading' tidyverse' library?

I installed the 'tidyverse' package but when I tried to load the library, I keep getting this error message: "Error: package or namespace load failed for ‘tidyverse’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): there is no package called ‘colorspace’"
Please, help!
I tried to load the package, that worked but loading the library did not.

trying to call the package RoAuth but getting an error no package called RCurl?

: library(ROAuth) after installing but receiving Error: package or namespace load failed for ‘ROAuth’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): there is no package called ‘RCurl’
Just install the required package:
install.packages("RCurl")

Loading required package: Sim.DiffProc Error in loadNamespace

I am trying to install Sim.Diffproc package in RStudio. However, no matter how I install it (manually by writing or picking from the package list), the package does not work and produces this error:
Loading required package: Sim.DiffProc Error in loadNamespace(i,
c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : there is no
package called ‘shiny’
Do you know the how to fix this error ?

Error in loadNamespace, package not found

I started using R. When I try to load the package Rcmdr, this error appears
Loading required package: RcmdrMisc
Loading required package: car
Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
there is no package called ‘nloptr’
Error: package ‘car’ could not be loaded
Please help me , I need this program for a class in college.

Error in require(biwavelet)

I have just downloaded biwavelet package but when trying to open it in R version 3.1.2 i get this error message:
> library(biwavelet)
Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) :
there is no package called ‘spam’
Error: package or namespace load failed for ‘biwavelet’
It only happens with this package. Any clues about what is the problem here?
It seems to be missing a dependency somehow. Just run
install.packages("spam")
to install the missing package.

Resources