class_3.R Please click the file name.

Lab Homework #1

Create a scatter plot of loan_amount vs interest_rate with a color grouping using term variable (please use factor(term) to convert it into a categorical variable). Save your plot to your local folder.

ggplot(data=loans)+geom_point(mapping=aes(x=loan_amount,y=interest_rate,color=term))