Concept
confint() in R with linear regression
#confint() provides information on confidence intervals for the coefficient estimates #This can be used with both simple and multiple linear regression confint(lm.fit)
Below is an example of the output information you can get by calling confint(lm.fit):
(from Pg. 111 of Introduction to Statistical Learning with Applications in R).

0
1
Updated 2020-04-04
Tags
Data Science
Related
summary(lm.fit): Output Detailed Statistical Information in R
predict(): Predict New Data from the (Simple) Linear Model in R
confint() in R with linear regression
lm.fit Documentation in R
Methods for deciding important variable
Example of Multiple Linear Regression Using R
confint() in R with linear regression