My canopy height data is very much the same values for a lot of the sites and I want to have a boxplot for these locations ( 100m & control). You can see the data here and what I am getting in R: (https://i.stack.imgur.com/gwSW7.jpg)](https://i.stack.imgur.com/aIZVq.png)
data_long <- melt(data)
ggplot(data_long, aes(x = variable, y = value)) +
geom_boxplot()
ggplot(data_long, aes(x = Location, y = value, color = variable)) +
geom_boxplot()
Can you force R to return it as a box and whisker rather than a line with two dots?