I want to create a row based on a column.
For example - I have the following data frame.
| lookup_name | alt_name | inventory | location |
|-------------|----------|-----------|----------|
| Honda | Car | 1 | au |
| Apple | Fruit | 1 | us |
I want to convert it to the following
| lookup_name | inventory | location |
|-------------|-----------|----------|
| Honda | 1 | au |
| Car | 1 | au |
| Apple | 1 | us |
| Fruit | 1 | us |
Where the alternative name column is removed and the locations and inventory are copied against the new lookup_name entry.