jmbejara / comp-econ-sp18

Main Course Repository for Computational Methods in Economics (Econ 21410, Spring 2018)
16 stars 23 forks source link

R packages tidyr and dplyr installation problems #67

Closed alykhanb96 closed 6 years ago

alykhanb96 commented 6 years ago

I'm trying to load and and make available to use the tidyr and dplyr package. but i get a set of errors. My code is ''' install.packages(tidyr) install.packages(dplyr) library(tidyr) library(dplyr) '''' The error i get is this ''' Error in install.packages : object 'dplyr' not found

install.packages(tidyr) Error in install.packages : object 'tidyr' not found install.packages(dplyr) Error in install.packages : object 'dplyr' not found library(tidyr) Error in library(tidyr) : there is no package called ‘tidyr’ library(dplyr) Error in library(dplyr) : there is no package called ‘dplyr’ ''' please help!

jmbejara commented 6 years ago

Hi Aly. Try putting the package names in quotation mark.

install.packages('tidyr')