Following is my code and I want to limit x and y axis but its messing up. Please have any suggestions.
the data looks like
X     Y 
0.2   30
30    20
10    05
7     25
data <- read.csv("file.csv")
p <- ggdotplot(data, x= "X", y= "Y", binwidth = 0.09)
p <- ggpar(p, xlim  = c(0, 30), ylim = c(0,30))
p
