int 및 str 데이터 열이 혼합 된 팬더에 데이터 프레임이 있습니다. 데이터 프레임 내에서 먼저 열을 연결하고 싶습니다. 그렇게하려면 int
열을 str
. 다음과 같이 시도했습니다.
mtrx['X.3'] = mtrx.to_string(columns = ['X.3'])
또는
mtrx['X.3'] = mtrx['X.3'].astype(str)
하지만 두 경우 모두 작동하지 않고 " 'str'및 'int'개체를 연결할 수 없습니다."라는 오류가 발생합니다. 두 str
열을 연결하면 완벽하게 작동합니다.
stackoverflow.com/questions/22005911/…
—
kdauria 2014 년