Unable to change labels when I plot NMF rank survey in R

200 Views Asked by At

I am implementing an R analysis to a data-set that I have. This is the plot

enter image description here

Basically I would like to change Data labels. I managed to change the title but the common scripts to change label do not work. Basically my idea was :

#---Requested Edit with the Reprex
#Generating a random matrix
and.mat <- matrix(rnorm(2000),100,20)
#Shuffling the generated matrix 
Random.mat <- randomize(and.mat)
#non negative matrix factorization
real.estim <- nmf(and.mat,2:10,nrun=30,seed = 123456,.options='t')
#....................
shuffled.estim <- nmf(Random.mat,2:10,nrun=30,seed = 123456,.options='t')
plot(real.estim,shuffled.estim, main = 'NMF rank survey : Comparison between 
Real and Shuffled Data', 
xlab =' Real Data', ylab =' Shuffled Data')

Thank you in advance

0

There are 0 best solutions below