input <- mtcars[,c("mpg","disp","hp","wt")]
# Create the relationship model. 
model <- lm(mpg~disp+hp+wt, data = input) 
# Show the model. 
input <- mtcars[,c("mpg","disp","hp","wt")] 
# Create the relationship model. 
model <- lm(mpg~disp+hp+wt, data = input) 
# Show the model.
print(model)

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: