I have a dataset head that contains two variables x and y that represent points in the contourn of a circle. I try to draw the circle using this code
ggplot(head, aes(x=x, y=y))+geom_line()
However, the plot I get is this one 
Could you help me to fix this? I really need to use those points. Thanks.