I would like to visualize my data in a scatterplot3d
On my X and Y axis, I would like the same lables. Something like this:
x<-c("A","B","C","D")
y<-c("A","B","C","D")
on the Z axis, I would like to show the comparision between lables in X and Y
A with A
A with B
A with c
A with D
B with B
B with C
B with D
C with C
C with D
D with D
#altogether 10 values in Z
z<-c(0.25, 0.7, 0.35, 1.14, 0.85, 0.36, 0.69, 0.73, 0.023, 0.85)
Now I want to draw all of of these infos on scatterplot3d
. How can I implement this concept on scatterplot3d?