我想从两个矩阵中绘制一个散点图:
第一个matix在图表中包含我的X值,并且只有一列。
[,1]
[1,] 3
[2,] 5
[3,] 8
... ...
矩阵B有n列,它们是图中的Y值:
[,1] [,2] [,3] ...
[1,] 80 85 25 ...
[2,] 42 35 57 ...
[3,] 81 52 39 ...
... ...
Matrix b中的第一行属于矩阵a中的第一行。
我想从这两个矩阵中绘制散点图,例如X轴上的值3
我希望在80,85,25,..
Y轴上有点
我该怎么做这个工作?
答案 0 :(得分:1)
扩展Roland的评论:
matplot(a, b, type="p") # "p" is the default but I put it in to highlight the possibility of using "l" or "b"
....完全符合您的要求:X列与Y列。