728x90
df2 = pd.DataFrame(list_variable)
df = pd.concat([df1, df2], axis=1)
dataframe(m*n)과 list(100*n)를 합치는데 오류가 발생.
양쪽 다 reset_index 해주고 합치면 해결.
df1 = df1.reset_index()
df2 = df2.reset_index()
df = pd.concat([df1, df2], axis=1)
728x90
'Python' 카테고리의 다른 글
No module named 'transformers.models.transfo_xl.configuration_transfo_xl' (0) | 2024.01.23 |
---|---|
tensorflow, tensorflow-gpu, python, cudnn, cuda 12.3 (0) | 2024.01.11 |
phrase input should be string, not <class 'float'> (0) | 2024.01.07 |
tqdm 'module' object is not callable (0) | 2024.01.07 |
partially initialized module 'charset_normalizer' has no attribute 'md__mypyc' (0) | 2024.01.06 |