由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - R plot hel...
相关主题
菜鸟求助 matlab code 问题a question about matlab plot
C++ plotting libary请教:关于gtk编程,建立一个GUI
how to change a variable's value in a const function求教vpa后画图问题
关于const和volatile修饰变量或指针的问题R question:
clarify[合集] 请教一个关于用C++画图的问题。
如果volatile只修饰结构体中的某些成员How to put two cdf (cumulative distribution function) in one plot.
[分享]:一篇文章讲通一半Java《面向对象一家人》Matlab:如何在scatter plot里面的(x,y)位置插入位图?
ARRAY BASIC,这种宏写的出来吗?technology used in Yahoo and Google Finance
相关话题的讨论汇总
话题: plot话题: figure话题: same话题: hel话题: hi
进入Programming版参与讨论
1 (共1页)
s*********x
发帖数: 1923
1
Hi, guys, hope you can help me out.
So I have two set of data and want to plot them in the same figure, maybe
with different color.
what I am doing right now is : plot( A~ B), but when I submit plot( C~B). R
will replace the A~B figure. Is
there anyway we can put all the points in the same figure?
Thanks!
l*****g
发帖数: 547
2
why not save it and use matlab?

R

【在 s*********x 的大作中提到】
: Hi, guys, hope you can help me out.
: So I have two set of data and want to plot them in the same figure, maybe
: with different color.
: what I am doing right now is : plot( A~ B), but when I submit plot( C~B). R
: will replace the A~B figure. Is
: there anyway we can put all the points in the same figure?
: Thanks!

p****o
发帖数: 1340
3
AC = c(A,C)
BB = c(B,B)
plot(AC ~ BB)

R

【在 s*********x 的大作中提到】
: Hi, guys, hope you can help me out.
: So I have two set of data and want to plot them in the same figure, maybe
: with different color.
: what I am doing right now is : plot( A~ B), but when I submit plot( C~B). R
: will replace the A~B figure. Is
: there anyway we can put all the points in the same figure?
: Thanks!

o**o
发帖数: 3964
4
plot之后,用lines()或者points()修饰这个图。都是manual上的,实在太弱了。。

【在 p****o 的大作中提到】
: AC = c(A,C)
: BB = c(B,B)
: plot(AC ~ BB)
:
: R

m********r
发帖数: 13
5
matplot(B,cbind(A,C),type="l")
1 (共1页)
进入Programming版参与讨论
相关主题
technology used in Yahoo and Google Financeclarify
我的matlab 抽风了。。。。如果volatile只修饰结构体中的某些成员
请教一个Matlab作曲线颜色的问题[分享]:一篇文章讲通一半Java《面向对象一家人》
How to plot deformation field like this in Matlab?ARRAY BASIC,这种宏写的出来吗?
菜鸟求助 matlab code 问题a question about matlab plot
C++ plotting libary请教:关于gtk编程,建立一个GUI
how to change a variable's value in a const function求教vpa后画图问题
关于const和volatile修饰变量或指针的问题R question:
相关话题的讨论汇总
话题: plot话题: figure话题: same话题: hel话题: hi