Can't load in 'RWeka' package

I could install 'RWeka' package successfully using the command:

install.packages('RWeka')

but when I tried to load in using the command: library(RWeka), it reads :Error: package or namespace load failed for ‘RWeka’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
there is no package called ‘RWekajars’

You are missing this package dependency, you have to install it first

install.packages("RWekajars")

Have in mind that this package requires a Java installation with matching architecture to be present in your system.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.