शुरू करेंमुफ़्त में शुरू करें

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.

यह अभ्यास पाठ्यक्रम का हिस्सा है

Equity Valuation in R

पाठ्यक्रम देखें

अभ्यास निर्देश

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.

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

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

# See the result
eq_val_per_share
कोड संपादित करें और चलाएँ