Это мой CSV:
languages, origin, other_test1, other_test2
"[{'name': 'French', 'vowel_count': 3}, {'name': 'Dutch', 'vowel_count': 4}, {'name': 'English', 'vowel_count': 5}]",Germanic,ABC,DEF
Я хочу преобразовать колонку языков CSV в следующий вывод:
Language_name ,Language_vowel_count, origin, other.test1, other.test2
French, 3, Germanic, ABC, DEF
Dutch, 4, Germanic, ABC, DEF
English, 5, Germanic, ABC, DEF
Код, который я пробовал:
from itertools import chain
a = df['languages'].str.findall("'(.*?)'").astype(np.object)
lens = a.str.len()
df = pd.DataFrame({
'origin' : df['origin'].repeat(lens),
'other_test1' : df['other_test1'].repeat(lens),
'other_test2' : df['other_test2'].repeat(lens),
'name' : list(chain.from_iterable(a.tolist())),
'vowel_count' : list(chain.from_iterable(a.tolist())),
})
df
Но это не дает мне ожидаемый результат.