Description Usage Arguments Value Examples
View source: R/delete_entries.R
The provided dataframe is returned with out any of the columns or rows that contain the specified string.
1 | delete_entries_containing(x, string, delete = "columns", exclude = c())
|
x |
Any nonempty dataframe. |
string |
The string to be matched. |
delete |
Should matched columns, or matched rows be deleted. Default is "columns". |
exclude |
Exclude specific column named here. |
Returns the dataframe without all columns that contain the string.
1 2 | delete_entries_containing(mtcars, "a", exclude = "am")
delete_entries_containing(mtcars, "Toyota", delete = "columns")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.