Mention how you can produce co-relations and covariances?
Answer / 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 |
What is data mining and what data miners do in R?
What will be the output of log (-5.8) when executed on r console?
What is polynomial in r?
Describe grep() in r string manipulation?
Explain more functions in brief in r?
What is Predictive analysis process in R?
how can you add datasets in r?
From the below data-set, extract only those values where age>60 and sex=”f”.
How would you find the number of missing values in a dataset and remove all of them?
What do you know about the evaluate_model() function from “statisticalmodeling” package
How to remove all the objects?
What is median in r?