MosaicMiss proportion of NA's not showing

Hi,
I'm having some troubles with the function "mosaicMiss":
In this dataset i have 5 variables and i'm interested to study the frequency of Na's of the variable data for each author.
I want to add the percentages of each panel, to see the difference between the author in observed vs missing data.
The code that i'm using is:

mosaicMiss(dati, highlight=4,plotvars=5,miss.labels = T)

Also, I want to order my plot for the frequency of NA's for each author, is that possible or i must order it by the name of author?

I solved the problem, i saw that there is no post about mosaicMiss, so i will post the solution in case someone is interested:

a<-mosaicMiss(dati_libri, highlight=4,plotvars=5, miss.labels = T,pop=F)
mosaicMiss(dati_libri, highlight=4,plotvars=5, miss.labels = T,pop=F)
labeling_cells(text=round(prop.table(as.matrix(a),1),2))(a)

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.