I have a data frame with about 800 points in it. The table looks roughly like this:
| V4 | V92 |
|---|---|
| .5 | .02 |
| .25 | .12 |
| .5 | 1.02 |
| .45 | -.02 |
| .5 | .32 |
| 1.5 | .42 |
This goes on for about 850 rows.
I ran a linear regression for this using the code:
lmMRE <- lm(data.frame$V92~data.frame$V4)
For some reason, when I run this code, my regression has 157 coefficients.
Why might this be? How do I change this so I only have 1?
Thanks!