I was trying to convert dictionary to pandas dataframe. I have pretty long string in the original dictionary but when I convert into dataframe, I see these strings get shortened. Do anyone know how to store whole string in the dataframe?
Here is some code:
To convert into Dataframe
test = pd.DataFrame(res['Items'][-1]['Item'])
Whole string code from dictionary
res['Items'][-1]['Item']['catchcopy']
Output:
'クリスタルガイザー / クリスタルガイザー(Crystal Geyser) / ミネラルウォーター 500ml 48本 水 ケース☆送料無料☆'
Shortened string code from dataframe
test.catchcopy
Output:
0 クリスタルガイザー / クリスタルガイザー(Crystal Geyser) / ミネラルウォ...
Name: catchcopy, dtype: object