Hobbesian Thinker
Hobbesian Thinker

Reputation: 21

Issues with loaded package in R

I loaded the package "Poliscidata" for my research work in political science. But when I ran this library now, I find an error message like

library(poliscidata)

Error: package or namespace load failed for ‘poliscidata’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
 there is no package called ‘stringi’.

It looks the package is not loading in my workspace. Kindly, let me know what should I do to run the package normally as before.

Upvotes: 1

Views: 239

Answers (1)

Samuel
Samuel

Reputation: 3053

Try:

install.packages("stringi")

Upvotes: 1

Related Questions