금 시세와 달러 환율 데이터 크롤링¶ 둘 사이의 종가 및 등락율을 분석해서 둘 사이의 상관관계를 알아보는 EDA를 가정합니다. In [4]: from urllib.request import urlopen import requests import bs4 import pandas as pd 국제 금 시세 데이터 크롤링¶ In [3]: # https://finance.naver.com/marketindex/worldDailyQuote.nhn?marketindexCd=CMDT_GC&fdtc=2&page=1 index_cd = "CMDT_GC" page_n = 1 naver_index = f"https://finance.naver.com/marketindex/worldDailyQuote.nhn?marketinde..