[Pandas] 데이터 프레임(DataFrame) 쿼리(Query) 함수
※ 결과 비교를 위한 html 수정 from IPython.display import display_html def display_side_by_side(*args): html_str='' for df in args: html_str += df.to_html() display_html(html_str.replace('table','table style="display:inline"'), raw=True) ※ 기준 DataFrame데이터 준비 import pandas as pd # 실습할 판다스 버전: 1.0.1 data = {"name": ["Atom", "John", "Park", "Kim"], "weight": [50, 60, 80, 30], "height": [150,180,170,200]} peo..
2020.06.13