728x90
r
-
데이터 과학 워크플로우: R vs Python 비교기술과 산업/AI 2025. 5. 21. 13:01
단계 공통 목적 R 워크플로우 Python 워크플로우Import (데이터 불러오기)CSV, Excel, DB 등 외부 데이터 가져오기readr, readxl, DBI, rvestpandas.read_csv(), read_excel(), SQLAlchemy, requests, beautifulsoupTidy/Transform (정제 및 변형)넓은 포맷 → 긴 포맷, 결측치 처리, 텍스트/시간 처리tidyr, dplyr, lubridate, stringr, forcatspandas, numpy, category_encoders, fancyimputeVisualize (시각화)데이터의 패턴과 이상값을 시각적으로 탐색ggplot2, plotly, reactablematplotlib, seaborn, plotly..