Home [Python] 부동산 실거래 매매 건수 확인 (분당구)
Post
Cancel

[Python] 부동산 실거래 매매 건수 확인 (분당구)

오늘은 여기까지 현재 분당구를 기준으로 최근 1년, 3년, 6년 ,10년의 실거래 매매 건수를 확인 가능하도록 구성

1
2
# header가 잘림
data.columns = [x +'\t' for x in data.columns]

streamlit에서 한글 버그가 있는건지 그냥 dataframe을 st.dataframe(df)로 작성하면 header가 짤리는데 짤리는걸 방지하기 위해 \t를 붙여준다.

This post is licensed under CC BY 4.0 by the author.

[Python] Pandas DataFrame to_sql 데이터 중복시 무시하는 방법

[Python] Streamlit ValueError: variable encoding field is specified without a type; the type cannot be inferred because it does not match any column in the data.