Answer the question
In order to leave comments, you need to log in
How to create such a DataFrame in pandas python?
Hi I have a list of dictionaries and I need to create a pandas DataFrame from them.
One list item:
And I want to get a DataFrame:{'date': date, 'text': text, 'user': user}
df = pd.DataFrame({
'date': ['Все даты'],
'text': ['все тексты'],
'user': ['все юзеры']
})
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question