I have a data frame like the following:
| AF | Important Info |
|---|---|
| Trial One | |
| Trial Two |
There is an entirely blank column, and it needs to be populated with data. I will have a near final data frame like the following:
| AF | Important Info |
|---|---|
| Trial One | '70' |
| Trial Two | '88' |
How would I go about adding additional values to the "Important Info" column, such that the result is like this:
| AF | Important Info |
|---|---|
| Trial One | '70', '99' |
| Trial Two | '88', '71' |
Thank you!