I have a data.frame
with 4 columns, "id1", "id2", "id3", and "name", where "id1", "id2", and "id3" are very long strings.
I need to connect "id1", "id2", and "id3" together to generate a new key; "id1" + "id2" + "id3" may be duplicated. In other words, each new key is a new combination of the values in "id1" + "id2" + "id3".
I want this new key simple and short such as 'key1', 'key2' etc...