Guest User

Untitled

a guest
Jan 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. # Create Plot
  2. plot <- ggplot(df, aes(desc, fill = type)) +
  3. geom_rect(aes(x = desc,
  4. xmin = id - 0.45, xmax = id + 0.45,
  5. ymin = end, ymax = start))
  6. # Error here. "Warning: Ignoring unknown aesthetics: X"
  7.  
  8. df <- df[,c(3,1,4,2)]
Add Comment
Please, Sign In to add comment