G

Untitled

public
Guest Jul 10, 2024 Never 13
Clone
Plaintext paste1.txt 21 lines (18 loc) | 719 Bytes
1
2
```python
3
import matplotlib.pyplot as plt
4
import numpy as np
5
6
# Значения для осей
7
revenue = np.array([10, 20, 30, 40, 50]) # Выручка
8
ebitda_margin = np.array([0.1, 0.15, 0.2, 0.25, 0.3]) # Маржа EBITDA
9
capital_expenditure = np.array([1, 2, 3, 4, 5]) # Капитальные затраты
10
11
# Расчет стоимости компании
12
company_value = revenue * ebitda_margin - capital_expenditure
13
14
# Создание визуализации
15
plt.figure(figsize=(10, 6))
16
plt.plot(revenue, company_value, 'o-')
17
plt.title('Deloitte Enterprise Value Map')
18
plt.xlabel('Выручка')
19
plt.ylabel('Стоимость компании')
20
plt.grid(True)
21
plt.show()
22
```