Mention how you can produce co-relations and covariances?
Answer Posted / Neelam Mohan Semwal
In R programming, you can calculate correlations between variables using the cor() function. To compute covariances, use the cov() function.nFor example:ncor(dataframe_name)$"variable1","variable2"ncov(dataframe_name)$"variable1","variable2"nReplace variable1 and variable2 with the names of your variables.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers