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.
This exercise is part of the course
Equity Valuation in R
Exercise 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.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Combine equity values per share
eq_val_per_share <- ___(
DCF = ___,
DDM = ___,
"P/E" = ___,
check.names = FALSE
)
# See the result
eq_val_per_share