본문 바로가기

전체 글109

머신러닝 1. 머신러닝(Machine Learning)인공지능: 인공(Artificial) + 지능(Interlligence)1956: 인간의 지능을 복제하거나 능가할 수 있는 지능형 기계를 만들고자 하는 컴퓨터 과학 분야개발자에 의한 인공지능, 데이터에 의한 인공지능머신러닝: 데이터를 기반으로 한 학습(learning) 하는 기계(machine)1997: 기계가 기존 데이터에서 학습하고 해당 데이터를 개선하여 의사 결정 또는 예측을 할 수 있도록 하는 AI의 하위 집합딥러닝: 깊은 (deep) 신경망 구조의 머신러닝2017: 신경망 레이어를 사용하여 데이터를 처리하고 결정을 내리는 기계 학습 기술Generative AI2021: 프롬프트나 기존 데이터를 기반으로 새로운 문서, 시각, 청각 컨텐츠를 생성하는 기술.. 2024. 6. 11.
떡볶이 프렌차이즈의 입점전략 In [1]:import pandas as pd In [2]:df = pd.read_csv('/content/drive/MyDrive/KDT/5. 데이터 분석/데이터/소상공인시장진흥공단_상가(상권)정보_서울_202303.csv')df  :1: DtypeWarning: Columns (2) have mixed types. Specify dtype option on import or set low_memory=False. df = pd.read_csv('/content/drive/MyDrive/KDT/5. 데이터 분석/데이터/소상공인시장진흥공단_상가(상권)정보_서ᄋ.. 2024. 6. 7.
서울시 따릉이 API 활용 1. 따릉이 API¶https://www.bikeseoul.com/app/station/getStationRealtimeStatus.do In [2]:import requestsimport foliumimport jsonimport pandas as pdimport warningswarnings.filterwarnings('ignore')  1-1. 데이터 요청하기¶ In [5]:targetSite = 'https://www.bikeseoul.com/app/station/getStationRealtimeStatus.do'request = requests.post(targetSite, data={'stationGrpSeq':'ALL'})print(request)# print(request.text)   .. 2024. 6. 7.
전국 도시공원 데이터 In [1]:import pandas as pdimport numpy as npimport matplotlib.pyplot as pltimport seaborn as snsIn [2]:from google.colab import drivedrive.mount('/content/drive')Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True).In [3]:park = pd.read_csv('/content/drive/MyDrive/KDT/5.데이터 분석/데이터/전국도시공원표준데이터.csv.. 2024. 6. 7.