I have a data frame in R like so called UK_profiles
:
row.names id name
1 1 8131437 Profile
2 2 8131719 WolverineCompetitio
I think you need to both install the dplyr
package with install.packages("dplyr")
and then use the library
command library(dplyr)
to load dplyr
into memory for use.
For example the mtcars
dataset is a part of dplyr
, if I only install dplyr
and then enter head(mtcars)
it doesn't find it. Once I use the library
command it is found.