Yes, I have installed the packages, after running the library and load I get this error as mentioned below.
Input:
install.packages("readr")
install.packages("dplyr")
library(readr)
library(dplyr)
load(readr)
load(dplyr)
Output:
install.packages("readr")
package ‘readr’ successfully unpacked and MD5 sums checked
install.packages("dplyr")
package ‘dplyr’ successfully unpacked and MD5 sums checked
library(dplyr)
Attaching package: ‘dplyr’
The following objects are masked from ‘package:stats’:
filter, lag
The following objects are masked from ‘package:base’:
intersect, setdiff, setequal, union
load(readr)
Error in load(readr) : object 'readr' not found
load(dplyr)
Error in load(dplyr) : object 'dplyr' not found