응답:pandas 데이터 상자의 두 열 텍스트 결합 응답:pandas 데이터 상자의 두 열 텍스트 결합
1052 단어 pandascombinecolumns
응답: 판다 데이터 상자에 두 열 텍스트 조합
2013년 10월 15일
618
두 열이 모두 문자열이면 직접 연결할 수 있습니다.df["period"] = df["Year"] + df["quarter"]
문자열 유형이 아닌 열 (또는 두 열) 을 먼저 변환해야 합니다.df["period"] = df["Year"].astype(str) + df["quarter"]
이 일을 할 때는 남스를 조심해야 한다!
여러 문자열을 연결해야 하는 경우...
Open Full Answer
Reference
이 문제에 관하여(응답:pandas 데이터 상자의 두 열 텍스트 결합 응답:pandas 데이터 상자의 두 열 텍스트 결합), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/nilotpalc/answer-combine-two-columns-of-text-in-pandas-dataframe-40cd
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
df["period"] = df["Year"] + df["quarter"]
df["period"] = df["Year"].astype(str) + df["quarter"]
Reference
이 문제에 관하여(응답:pandas 데이터 상자의 두 열 텍스트 결합 응답:pandas 데이터 상자의 두 열 텍스트 결합), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nilotpalc/answer-combine-two-columns-of-text-in-pandas-dataframe-40cd텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)