Scatterplot and Correlation of table variables
Show older comments
Hello there
Q = readtable("DA.xlsx")
x=[Q.Tam,Q.Az,Q.Clp,Q.Dp,Q.DH,Q.DN,Q.EB, Q.Pw ,Q.Sd,Q.Prs,Q.WD,Q.WV,Q.AD, Q.ZT, Q.La, Q.Lo, Q.Al];
y=[Q.GH];
mdl=fitlm(x,y)
corrplot(Q)
Please why does the pvalue for X9, X13, X15, X16 return NaN and not X17 even though X17 have the same values all through.?
Also how do I get how do I get scatter plot and how can I fix the correlation of Input variables with output GH?
Accepted Answer
More Answers (0)
Categories
Find more on Linear Regression in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!