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.
複数の列を持つデータ フレームから R でプロットを作成しようとしていますが、ggplot で列の 1 つを点としてプロットし、他のいくつかを異なる色の線としてプロットしたいと考えています。
これらの各プロットを個別に作成する方法の例を見つけることができますが、プロットを結合するコマンドが見つからないようです...
ご協力いただきありがとうございます。
このような:
dat <- data.frame(points.x = c(1:10), points.y = c(1:10), lines.x = c(10:1), lines.y = c(1:10)) ggplot(dat, aes(points.x, points.y)) + geom_point() + geom_line(aes(lines.x,lines.y))