Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fct_lump prop to consider NA #41

Closed
camdenhu opened this issue Sep 23, 2016 · 4 comments
Closed

fct_lump prop to consider NA #41

camdenhu opened this issue Sep 23, 2016 · 4 comments
Labels
bug an unexpected problem or unintended behavior

Comments

@camdenhu
Copy link

Currently, prop_n is calculated as the count divided by sum of counts, which excludes NA.

If prop_n is calculated as count divided by length(f), the proportion would take into account NA values and reflect the true proportion of the level, not the proportion of the level among non-NA values.

Thanks for the great work.

@hadley
Copy link
Member

hadley commented Dec 30, 2016

Can you please provide a reproducible example illustrating where this is a problem?

@camdenhu
Copy link
Author

camdenhu commented Dec 30, 2016

f <- factor(c(rep("a",5), "b", rep(NA, 94)))
fct_lump(f, prop = 0.02) keeps "b" as a level, even though it occurs in just 1 of 100 values, because it occurs in 1 of 6 non-NA values.

@hadley
Copy link
Member

hadley commented Dec 30, 2016

The problem is that in your example NA isn't actually a level. But if you make it one it illustrates a different bug (this time in levels<-)

f <- factor(c(rep("a", 5), "b", rep(NA, 94)), exclude = NULL)
fct_lump(f, prop = 0.02)
#>   [1] a     a     a     a     a     Other <NA>  <NA>  <NA>  <NA>  <NA> 
#>  [12] <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA> 
#>  [23] <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA> 
#>  [34] <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA> 
#>  [45] <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA> 
#>  [56] <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA> 
#>  [67] <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA> 
#>  [78] <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA> 
#>  [89] <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA>  <NA> 
#> [100] <NA> 
#> Levels: a Other

@camdenhu
Copy link
Author

camdenhu commented Jan 3, 2017

Yes I have realized that there are bugs with NA as a level. The problem goes away when it is replaced by an explicit string. My point is that prop should be considered as a proportion of the length of the vector, not just those with associated levels.

@hadley hadley added the bug an unexpected problem or unintended behavior label Feb 11, 2018
@hadley hadley closed this as completed in 0275f6f Feb 11, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug an unexpected problem or unintended behavior
Projects
None yet
Development

No branches or pull requests

2 participants