About 298,000 results
Open links in new tab
  1. select function in R - Stack Overflow

    Apr 2, 2023 · 2 It seems the select code is not working in your case. If this is the case the reason is due to multiple libraries with the same function. In this case specifically, the function select exists in the …

  2. r - Error with select function from dplyr - Stack Overflow

    Sep 20, 2017 · Either you overwrite the dplyr select() function with your own function or you loaded a package after dplyr that has it's own select() function that's taking precedence.

  3. r - How NOT to select columns using select () dplyr when you have ...

    Mar 31, 2018 · 49 Edit: OP's actual question was about how to use a character vector to select or deselect columns from a dataframe. Use the one_of() helper function for that:

  4. r - Select columns based on string match - Stack Overflow

    Select columns based on string match - dplyr::select Asked 11 years, 3 months ago Modified 10 months ago Viewed 224k times

  5. r - Select unique values with 'select' function in 'dplyr' library ...

    Aug 29, 2014 · Is it possible to select all unique values from a column of a data.frame using select function in dplyr library? Something like "SELECT DISTINCT field1 FROM table1" in SQL notation. …

  6. R Error: could not find function "select" - Stack Overflow

    Apr 30, 2016 · 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.

  7. r - passing function argument to dplyr select - Stack Overflow

    passing function argument to dplyr select Asked 11 years, 9 months ago Modified 5 years, 6 months ago Viewed 6k times

  8. r - Combine select and mutate - Stack Overflow

    Quite often, I find myself manually combining select() and mutate() functions within dplyr. This is usually because I'm tidying up a dataframe, want to create new columns based on the old columns, ...

  9. r - dplyr::select function clashes with MASS::select - Stack Overflow

    Jun 13, 2014 · The real problem is that dplyr decided to name a function the same as a function in the MASS package, a package that is included in base R and loaded as a dependency by many …

  10. r - Combining select () and filter () - Stack Overflow

    Oct 22, 2018 · filter references column names. If your select statement removes (or renames) a column that you want to filter on, then they won't be equivalent. Otherwise, I don't think the order will matter, …