재무 예측에서의 의존성과 민감도

Python으로 하는 Financial Forecasting

Victoria Clark

CGMA Financial Analyst

예측 의존성과 민감도 설명

  • 상호 연결된 변수
  • 하나의 변수 변경이 다른 변수에 연쇄 영향을 미침

가정

Python으로 하는 Financial Forecasting

Python으로 의존성과 민감도 다루기

if x = 0:
   x_costs + y_costs
 else
   x_costs
  • 긴급 주문 예상
  • 배송 비용 10% 증가
if month = December:
   delivery_costs + delivery_costs*0.1
 else
   delivery_costs
Python으로 하는 Financial Forecasting

연습해 봅시다!

Python으로 하는 Financial Forecasting

Preparing Video For Download...