Skip to content

Function idea(s) for subsetting #55

@rvanmazijk

Description

@rvanmazijk
without <- function(x, y) {
  x[!(x %in% y)]
}
`%without%` <- function(x, y) {
  without(x, y) 
}
# E.g.:
x %<>% without(y)
# Or
x %>%
  without(y) %>%
  ...
# Or
x %without%
  y %>%
  ...

Metadata

Metadata

Assignees

Labels

reproducibilityIncludes code or methods' transparency and alignment with open science principles

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions