Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. > ggplot(ab_sub, aes(y = isced11, x = dn05, fill = dn05, color = dn05)) +
  2. + geom_bar( stat="identity") +
  3. + facet_wrap(~pdm01a)
  4. Don't know how to automatically pick scale for object of type labelled. Defaulting to continuous.
  5. Don't know how to automatically pick scale for object of type labelled. Defaulting to continuous.
  6. Don't know how to automatically pick scale for object of type labelled. Defaulting to continuous.
  7. Don't know how to automatically pick scale for object of type labelled. Defaulting to continuous.
  8. Error in UseMethod("rescale") :
  9. no applicable method for 'rescale' applied to an object of class "labelled"
  10. > ab_sub[, c("isced11", "dn05", "pdm01a")]
  11. # A tibble: 1,437 x 3
  12. isced11 dn05 pdm01a
  13. <dbl+lbl> <dbl+lbl> <dbl>
  14. 1 5 1 2
  15. 2 5 1 1
  16. 3 5 1 2
  17. 4 7 1 2
  18. 5 7 1 1
  19. 6 3 1 2
  20. 7 3 1 2
  21. 8 5 1 2
  22. 9 3 0 0
  23. 10 3 1 2
  24. # ... with 1,427 more rows
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement