Questions tagged [dplyr]

Use this tag for questions relating to functions from the dplyr package, such as group_by, summarize, filter, and select.

The r dplyr package is the next iteration of the plyr package. It has three main goals:

  1. Identify the most important data manipulation tools needed for data analysis and make them easy to use from R.
  2. Provide fast performance for in-memory data by writing key pieces in C++.
  3. Use the same interface to work with data no matter where it's stored, whether in a data.frame, a data.table or a database.

Repositories

Vignettes

Some vignettes have been moved to other related packages.

Other resources

19 questions
0
votes
0 answers

R error with filter: x comparison (1) is possible only for atomic and list types

I'm working through an error that I just can't seem to troubleshoot properly. I have a dataset from Stata that I'm working with in R. I have also converted it to a csv for my own different needs in different scripts. Currently working with the csv…
NB3
  • 1
  • 1
  • 1