Concept Flow - Adding and removing columns
Start with data frame
Add column: df$new_col <- values
Check data frame with new column
Remove column: df$new_col <- NULL
Check data frame after removal
End
Start with a data frame, add a new column by assigning values, then remove a column by setting it to NULL.