Ask Your Question
3

What is the method to eliminate NA from facet_wrap in ggplot2?

asked 2021-09-02 11:00:00 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2022-01-21 12:00:00 +0000

plato gravatar image

One way to eliminate NA from facet_wrap in ggplot2 is to use the na.omit() function within the data argument of ggplot(). This function removes any rows with NA values in the specified variable, and the resulting plot will not display any NA values:

library(ggplot2)

# create example data frame with NA values
df <- data.frame(x = 1:10, y = c(1:5, rep(NA, 5)), group = rep(c("A", "B"), each = 5))

# remove NA values and create facet_wrap plot
ggplot(na.omit(df), aes(x = x, y = y)) +
  geom_point() +
  facet_wrap(~ group)

This will create a plot with two facets, one for group "A" and one for group "B", and no NA values will be displayed.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-09-02 11:00:00 +0000

Seen: 23 times

Last updated: Jan 21 '22