I have a dataframe where one of my columns includes rows of lists.
Each individual row in my column is a list of elements.
I want to create ONE list that includes all the values from each row.
I have tried
final_list = list(itertools.chain.from_iterable(mylist))
but this keeps each row has a list.
The total length of all of my rows is 1981
.
When I check for final_list it still has a length of 1981
which is wrong because each row has multiple elements in the lists.
I expect for the length of my final_list to have each row's list elements.