Как добавить 2D массив в один колум DataFrame

data = {"lists": list(arr)}

df = pd.DataFrame(data, columns=['lists'])

print(df)
Yesid Cano Castro