Python으로 하는 Financial Forecasting
Victoria Clark
CGMA Financial Analyst

핵심 지표를 기반으로 구성
기업의 재무 건전성 파악
체계적인 재무 예측의 기반 제공

두 가지 핵심 요소:
매출총이익:
직접 매출 및 비용
순이익:
간접 수익 및 비용

직접 매출 및 비용
cogs = material_costs +
direct_labor_costs +
factory_costs
gross_profit = sales - cogs

간접 수익 및 비용
opex = insurance +
admin_sales +
r_d +
training_cost +
other_non_direct_costs
net_profit = gross_profit - opex

Python으로 하는 Financial Forecasting