I'm trying to add a new column to an existing dataframe. This column should contain id number, first letter of first name and first letter of last name. I've used the following code to add the column:
my_table%>%
unite(newID, c("id", "FirstName", "Surname"))
...and it shows the new column as a tibble, but not in the dataframe itself.
What am I missing? Going crazy here.
Thanks in advance,