CommencerCommencer gratuitement

Combine valuation into a summary table

Now that you have performed a valuation of the firm's equity using FCFE, DDM, and P/E multiples, it is time to put the equity values per share you calculated into a table. This allows you to summarize and compare the results more easily. The equity values per share for the FCFE Model, DDM, and P/E are stored in eq_val_fcfe_per_share, eq_val_ddm_per_share, and eq_val_p_e_per_share, respectively.

Cet exercice fait partie du cours

Equity Valuation in R

Afficher le cours

Instructions

Combine equity values per share implied by the DCF, DDM, and P/E methods into a data frame, in that order. check.names is set to FALSE to prevent P/E being converted to a valid R variable name.

Exercice interactif pratique

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

# Combine equity values per share
eq_val_per_share <- ___(
  DCF = ___,
  DDM = ___,
  "P/E" = ___,
  check.names = FALSE
)

# See the result
eq_val_per_share
Modifier et exécuter le code