I was working on some categorical variables and created a contingency table using the following code:
mytable <- table(Gender, Income)
The output looks like below (which is not nice-looking):
Work.Status
Gender Employed Full-time Employed Part-time Unemployed
Male 433 35 29
Female 427 174 247
Is there any way that I can format this table to make it better looking (e.g. change the font, color, and size of the variables)? I tried a few methods from the web, but didn't get the desired results....