Is there any way to find the chi-square p-value matrix in 'R' (a matrix with the p-values between the attributes)?
As an example, consider the the iris
data set. I am looking for a matrix as follows:
| | Sepal length | Sepal width | Petal length | Petal width | Species |
|----------------|--------------|-------------|--------------|-------------|---------|
| Sepal length | | | | | |
| Sepal width | | | | | |
| Petal length | | | | | |
| Petal width | | | | | |
| Species | | | | | |
The elements of the matrix would be the chi square values for the (i,j) variables of the iris
data set.