-3

I have a regional dataset and I have to analyze it in the R language. I have to provide the recommendations where can an organization promotes their programs. I want to find a correlation between 25 attributes. can anybody help me out with this?

1 Answers1

1

We can just use cor to get the correlation between the columns

out <- cor(df1)

data

set.seed(24)
df1 <- as.data.frame(matrix(rnorm(25), 5, 5))
akrun
  • 874,273
  • 37
  • 540
  • 662