I generated random data points from three bivariate Gaussian densities as follows.
set1 <- rmvnorm(n = 100, mean = c(0, 1.5), sigma = matrix(c(1,.2,.2,3.2),nrow=2))
I generated three set of random data points and I need to calculate the confusion matrix. I cannot find how to generate referance.
I checked the online sources but couldn't find any solution. Do you have any recomendation or code?