This example shows a 20% r squared value, so although this is fairly weak, it is high enough to confirm some correlation
lingreg3 = lm(Wind ~ Temp, data=airquality)
summary(lingreg3)
##
## Call:
## lm(formula = Wind ~ Temp, data = airquality)
##
## Residuals:
## Min 1Q Median 3Q Max
## -8.5784 -2.4489 -0.2261 1.9853 9.7398
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 23.23369 2.11239 10.999 < 2e-16 ***
## Temp -0.17046 0.02693 -6.331 2.64e-09 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 3.142 on 151 degrees of freedom
## Multiple R-squared: 0.2098, Adjusted R-squared: 0.2045
## F-statistic: 40.08 on 1 and 151 DF, p-value: 2.642e-09