Calculating the Relevant Multiple
Assuming the companies selected are reasonably comparable to the subject firm, then using the average (or median) multiple may be a reasonable estimate of the valuation multiple to apply to the subject firm. The P/E and P/B multiples for each of the comparable firms are stored in the pharma object. For this exercise, calculate the average of each of those metrics.
यह अभ्यास पाठ्यक्रम का हिस्सा है
Equity Valuation in R
अभ्यास निर्देश
- Print contents of
pharmadata object. - Calculate the average for all the metrics in
pharma(i.e., columns 2 through 4) using thecolMeans()command.
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
# Show contents of pharma
___
# Calculate average multiples
multiples <- colMeans(___, na.rm = TRUE)
multiples