I have a number of points that I want to place around the border. How can i do this?
Here are my motives:
I tried geom_line, but that was clearly wrong since it produced this!
thanks
Use geom_path instead of geom_line . Here is an example:
geom_path
geom_line
i <- seq(0, 2*pi, length.out=50) dat <- data.frame(x=cos(i), y=sin(i)) library(ggplot2) ggplot(dat, aes(x, y)) + geom_line()
ggplot(dat, aes(x, y)) + geom_path()
Source: https://habr.com/ru/post/1436376/More articles:Error creating user SalesForce LICENSE_LIMIT_EXCEEDED: License limit exceeded - soapIstream_iterator initialization initialization waiting for input - c ++Can I get a pointer to the current function? - cbson_ext fails on ubuntu - bsonMulti-touch two finger taps - androidEssential iOS6 Xcode 4.5 Backgrounds - iphonejQuery setTimeout on Append - jqueryHow can I detect opening / closing of a laptop cover using Python under Windows? - pythonWhy can't I combine counters in the body of SimpleResult? - scalaAccessing Websphere Variables - javaAll Articles