I have a vector 'numeric_column_names' that contains the data below:
print(numeric_column_names)
 [1] "an_id"             "numeric_col_1"
 [3] "numeric_col_2"     "numeric_col_3"
 [5] "another_id"        "numeric_col_4"
How do I remove all of the elements that have the text "_id" so the output would be:
print(numeric_column_names)
 [1] "numeric_col_1"     "numeric_col_2"
 [3] "numeric_col_3"     "numeric_col_4"
