Displaying 1 result from an estimated 1 matches for "tab13".
Did you mean:
tab1
2011 May 19
1
Pie chart
I made a pie chart and the names of the levels are outside
the circle. How do I put the names of the levels within each
sector?
names(tab13) = paste(c('Regular', 'Bom', 'Excelente'),
round(100*prop.table(tab13), dig=1), "%")
pie(tab13, col=c("LightYellow", "lightgreen", 'lightblue',
'white'), clockwise=F, radius=.7)
Thanks,
--------------------------------------...