Question: QUESTION Based on this scatterplot created in R What is data relationship between Age and Experience?* # create a data frame with variables Age, Experience,
QUESTION
Based on this scatterplot created in R
What is data relationship between Age and Experience?*
# create a data frame with variables Age, Experience, Income, CCAvg, and Mortgage
data <- data.frame(Age = c(25, 30, 35, 40, 45, 50, 55, 60),
Experience = c(1, 3, 5, 7, 9, 11, 13, 15),
Income = c(25, 40, 55, 70, 85, 100, 115, 130),
CCAvg = c(1, 2, 3, 4, 5, 6, 7, 8),
Mortgage = c(0, 50, 100, 150, 200, 250, 300, 350))
# create a scatterplot matrix
pairs(data)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
