Deciding Diminishing Returns based on Data (Regression)

Click For Summary
SUMMARY

This discussion centers on identifying diminishing returns in linear regression analysis. It establishes that diminishing returns can be inferred from data patterns, particularly when the slope of the regression line decreases as the independent variable increases. Key techniques include segmenting data for regression analysis and transforming data using methods like logarithmic or polynomial transformations. The conversation emphasizes the importance of visualizing data before applying linear regression to ensure accurate interpretations.

PREREQUISITES
  • Understanding of linear regression analysis
  • Familiarity with data visualization techniques
  • Knowledge of non-linear relationships in statistics
  • Experience with data transformation methods (e.g., logarithmic transformations)
NEXT STEPS
  • Explore data visualization tools such as Matplotlib or Seaborn for Python
  • Learn about polynomial regression and its applications
  • Study the concept of non-linear regression models
  • Investigate the use of segmented regression analysis in practical scenarios
USEFUL FOR

Data analysts, statisticians, and researchers interested in understanding and applying regression analysis to identify diminishing returns in various contexts.

WWGD
Science Advisor
Homework Helper
Messages
7,804
Reaction score
13,106
Hi All,
I am thinking of the issue of diminishing returns re linear regression. Can it be determined/decided from the
data itself, or is it decided just from the context? I was thinking of examples like that of grade vs daily study hours or (height )jump length vs year ( winner heights have been increasing.) In the 1st case, say the slope is 0.5 , constant is 23 ,so that every hour studied adds (along the regression line) a half point to the grade . It seems clear that studying 18 hours n a day would not add 9 points, i.e., we hit a diminishing returns at some point. Still, can this diminishing return be deduced from the data itself, or just from common sense/context?
Thanks.
 
Physics news on Phys.org
Before you calculate anything (using linear regression or otherwise), always plot your data. If it looks like a straight line across the range, go ahead and fit a straight line. But if the slope reduces as the independent variable increases, you have what you describe as "diminishing returns" which is an example of a non-linear relationship - so don't try and fit a straight line.
 
  • Like
Likes   Reactions: WWGD
Like MrAnchovy said, a linear regression will never show diminishing returns.
If you can get data which samples past the point of diminishing returns, you should be able to see it as a "knee" in the curve.

Also, you need some sort of cost associated with what you are putting in. For your example with study hours, the "cost" might be shown by the relationship between sleep and test scores. As soon as sleep is sacrificed to study, the returns would be diminished. But if the sleep cost is non-linear: e.g.
Test score = 40 - .25 * (lost sleep hours)^2, then you could probably still show the value in losing some sleep to studying.

If you tell me I have infinite money and infinite time, there would be no reason to stop putting money and time into something even if the expected return for each additional million dollars was 1/10 the return on the previous million.

If you are stuck with linear regression as your only tool in your tool kit, you can show diminishing returns by dividing the data into segments and running the regression on just the subset of the data. Looking at the slope along each segment, if the slope is decreasing, the you have evidence of the non-linear relationship and the diminishing returns.

Another method would be to transform your data: Y = y^2, Y = y^{1/2}, Y = log(y), etc. If any of these fit the straight line regression, you might be able to make inferences based on the functional relationship to the linear model.
 
  • Like
Likes   Reactions: WWGD

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 6 ·
Replies
6
Views
4K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 33 ·
2
Replies
33
Views
6K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 15 ·
Replies
15
Views
2K
  • · Replies 6 ·
Replies
6
Views
3K
Replies
127
Views
23K
  • · Replies 2 ·
Replies
2
Views
477