CommencerCommencer gratuitement

Calculating an alternative forecast for Netflix

The original assumptions are as follows: the total amount of subscribers at a 78% success rate results in 39,000 subscribers. We used this to build the forecast numbers.

However, the success rate for 2019 has been recalculated to have a probability of 65%, and the management has asked us to make an adjusted forecast based on this value.

The ratio between the subscribers and sales is 1 subscriber to 0.46 USD sales, set to variable sales_subs_ratio. In addition, the variables for number of subscribers per percentage point (n_subscribers_per_pp) and our prior calculation of forecast1 have also been set.

Cet exercice fait partie du cours

Financial Forecasting in Python

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Set the proportion of successes to 65%
pct_success2 = ____

# Calculate the number of subscribers
n_subscribers2 = ___

# Calculate the new forecast
forecast2 = ____ * ____
Modifier et exécuter le code