You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using waffle in a for looping over a dataframe and generating multiple plots.
An example from my data: 1 99 85 15 8 92 1 99 10 90 0 100
The problem is the last set of numbers: When there is a 0 included, waffle behaves like it's a 100. The zero seems to be ignored. Is there a way to prevent this?
Working: Green = 10, orange = 90 waffle(c(10, 90))
Not working: Green = 0 waffle(c(0, 100))
The text was updated successfully, but these errors were encountered:
I am using waffle in a for looping over a dataframe and generating multiple plots.
An example from my data:
1 99
85 15
8 92
1 99
10 90
0 100
The problem is the last set of numbers: When there is a 0 included, waffle behaves like it's a 100. The zero seems to be ignored. Is there a way to prevent this?
Working: Green = 10, orange = 90
waffle(c(10, 90))
Not working: Green = 0
waffle(c(0, 100))
The text was updated successfully, but these errors were encountered: