Nonlinear relationship
Covariance and correlation measure the strength of a linear relationship.
If these metrics are low, it doesn't mean that the variables are not related at all!
In some cases, you can achieve linearity using a transformation of one or more of the variables. If your data is heavily skewed, a log-transformation usually helps.
In your environment, you can find the houses
data frame with two variables: area
and price
.
Diese Übung ist Teil des Kurses
Practicing Statistics Interview Questions in R
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Draw a scatterplot of price vs. area
___(___ ~ ___, data = ___)
# Calculate the correlation coefficient of price and area
___(___, ___)