predictedPEonCSR {stockAnalyst} | R Documentation |
Calculates Predicted Price to Earning Multiple based on Cross-Sectional Regression.
Description
A predicted PE, which is conceptually similar to a justified PE, can be estimated from cross-sectional regressions of PE on the fundamentals believed to drive security valuation. This approach is pioneered by experts Kisor and Whitbeck 1963 and Malkiel and Cragg in 1970 (as cited in Jerald E. Pinto, 2020). The studies measured PEs for a group of stocks and the characteristics which determine PE such as: growth rate in earnings, payout ratio, and a measure of volatility, such as standard deviation of earnings changes or beta. An analyst can conduct such cross-sectional regressions by using any set of explanatory variables considered to determine investment value. The analyst must bear in mind; however, the potential distortions that can be introduced by multi-collinearity among independent variables (Jerald E. Pinto, 2020).
Usage
predictedPEonCSR(b0, b1, b2, b3, x1DRP, x2Beta, x3EGR)
Arguments
b0 |
number. |
b1 |
number. |
b2 |
number. |
b3 |
number. |
x1DRP |
number. |
x2Beta |
number. |
x3EGR |
number. |
Details
According to information provided by Jerald E. Pinto (2020), the method predictedPEonCSR
is developed for computing Cross-Sectional Regression for values passed to its seven arguments. Here, b0
is intercept, b1
is given coefficient of x1DRP, b2
is given coefficient of x2Beta, b3
is given coefficient of x3EGR, x1DRP
is Dividend Payout Ratio that is taken as first variable X1, x2Beta
is company beta that is taken as variable X2, and x3EGR
is five-year earnings growth rate that is taken as variable X3 of the regression equation.
Value
Input values to seven arguments b0
, b1
, b2
, b3
,x1DRP
,x2Beta
, and x3EGR
.
Author(s)
MaheshP Kumar, maheshparamjitkumar@gmail.com
References
Pinto, J. E. (2020). Equity Asset Valuation (4th ed.). Wiley Professional Development (P&T). https://bookshelf.vitalsource.com/books/9781119628194
Examples
predictedPEonCSR(b0=12.12, b1=2.25, b2= -0.20, b3=14.43, x1DRP=0.45, x2Beta=0.9, x3EGR=0.08)