How do I change the color of the regression line in the r car scatterplotMatrix function?
If I run this code:
# Load the iris dataset.
library(car)
data(iris)
# Plot #1: Basic scatterplot matrix of the four measurements
scatterplotMatrix(~Sepal.Length+Sepal.Width+Petal.Length+Petal.Width, data=iris)
Inspection shows the points, the smooth windows, and the regression lines are all the same color and are not all very clearly differentiated.
If I wanted the points in blue, the regression in green, and the smooth in orange, how would I do that?