using > theme(panel.border = element_blank()) removes the x and y axis lines from the plot and plot is left without any axis lines!! ``` df <- data.frame(x=seq(1:100), y=seq(1:100)) plot = ggplot(df, aes(x, y)) + geom_point() plot+ theme_bw() +theme(panel.border = element_blank()) ```