I'm new to R and I have been experimenting with different data visualization techniques. I was trying out scatter-plot matrices and this is my code
scatterplotMatrix(~Salary+Percent_MBA+Percentile_ET,
data = placedET,
main = "Scatter Plot Matrix",
spread = FALSE,
)
My question is can I access attributes of the red line (non-parametric regression), can I alter its type? I found that the color can be altered through col
but can't I change the line type .I have managed to change the green lines attributes by lty
but I can't access the other one. I read the help section for scatter-plot matrices and stumbled upon smoother.args
.Is this related to it somehow? I've posted an image link to show my current scatter-plot.
(P.S : It's my first question here so I'm sorry if I have made any mistakes. Please point them out.)