When we run a linear regression in R, under what variable does R save the actual regression equation, by this I mean does R actually save the equation in the form:
y=B0 +B1x1 + B2x2 + B3x3 etc
I am asking because i would like to call upon that equation later, or would i need to create a new variable and let it equal to the above equation and at the same time include my beta values such that (for example) in R
z=0.1 + 0.2x1 +0.3x2 +0.4x3 etc.
I understand one can use predict function but I am not sure if that is what i am looking for exactly