การพยากรณ์ทางการเงินด้วย Python
Victoria Clark
CGMA Financial Analyst


การใช้ลิสต์แบบรวมคู่
| ผลลัพธ์ | ความน่าจะเป็น (%) |
|---|---|
| 1 | 30 |
| 2 | 20 |
| 3 | 50 |
outcome_probability = ['1|0.3', '2|0.2', '3|0.5']
กำหนดสูตรการพึ่งพาหรือความไวต่อปัจจัย
def assumption1()
if marketsentiment = 0.3:
sales + sales*0.1
else
sales
การพยากรณ์ทางการเงินด้วย Python