Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

R Error: could not find function "select"

Tags:

r

select(data, starts_with("nase"))

Which package do I need to use the select function? How can I find out? Google, stackoverflow is not helpful atm.

like image 653
Soren Avatar asked Apr 30 '16 18:04

Soren


1 Answers

  1. Install package dplyr by running the command below:

    install.packages("dplyr")
    
  2. After this, load the library using the command below:

    library(dplyr)
    
like image 143
Harbhajan Singh Avatar answered Oct 12 '22 22:10

Harbhajan Singh