Last answered:

29 Jul 2020

Posted on:

12 Jul 2020

0

Unable to load packages on R studio

Hi, I'm at the end of R programming section and currently doing hypothesis testing but unable to load packages like library(psych) , library(pastec) please help, since im unable to use functions like describe etc without having these packages loaded up   thanks and regards, Alim
1 answers ( 0 marked as helpful)
Instructor
Posted on:

29 Jul 2020

0
Hi Abdul,  thanks for reaching out! Did you install the packages prior to loading them? If you're using a package for the first time in R, you should install it prior to using it. You can do so, by running the following code either in your console or from your script: install.packages("psych") to install the psych package and same procedure for any remaining package which you're using for the first time. Keep in mind that you only need to install the package one time before you can start using it. After that you can just refer to the library("psych") without the need for installing it every time.     Best,  365 Eli 

Submit an answer