I am working with the Arrests data in "effects", I am currently trying to create a mosaicplot to show the relationship between released,colour, employed, and citizen. When I create the plot I only have labels for released and color. I would like to have labels for citizen and employed, or at least C:Yes and C:No on the plot so it is more obvious what each yes and no is for. Also I want to move the labels around some, like distance from the graph.
mosaicplot(~ colour + released + citizen + employed, data=Arrests, shade=T)
Thank you!