waffle
waffle copied to clipboard
Last element in parts does not display
parts <- c('points' = mean(boxes$points), 'rebounds' = mean(boxes$dktotreb_pts), 'blocks' = mean(boxes$dkblocks_pts), 'x3p' = mean(boxes$dkX3p_pts), 'assists' = mean(boxes$dkassists_pts), 'steals' = mean(boxes$dksteals_pts))
waffle(parts, rows=5, size=1)
the values for points, rebounds, blocks, and assists are displayed in the waffle chart, but not steals. This happens to the last element in the parts list regardless of how it is ordered.

Can you put a dropbox link to or dput of boxes?