Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
境界を配置したい一連のポイントがあります。これについてどうすればいいですか?
これらは私のポイントです:
私は geom_line を試しましたが、これが生成されたので明らかに間違っていました!
ありがとう
geom_pathの代わりに使用しgeom_lineます。次に例を示します。
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()