由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - How to plot multi-curves in one single chart by R
相关主题
adding colors to data points in scatter plot in R如何做microarray的scatter plot图?
[合集] 请教一个统计问题data prediction by regression or better ways
quick question in RPCA作图
为什么不能把ABLINE加到散点图中了一般什么样的数据,分析起来要做log transformation?
请教一个r的问题R question
R: how to convert a scatter plot to a contour color plot?[R] ROC curve怎么指定cutoffs?
求助--基因之间表达量回归分析软件How to compute the area between my curve and diagonal line
SAS plot questionbond price data clearn (转载)
相关话题的讨论汇总
话题: plot话题: chart话题: curves话题: what话题: multi
进入Statistics版参与讨论
1 (共1页)
J*****n
发帖数: 4859
1
plot(x,y) actually gives the scatter plot. But I just want to see x and y's
curve as two time series.
What function I should use?
Thanks.
m****e
发帖数: 255
2
lines()?
k*******a
发帖数: 772
3
plot(x,type="l")
lines(y,type="l")
not sure I understand correctly, is this what you want?

y's

【在 J*****n 的大作中提到】
: plot(x,y) actually gives the scatter plot. But I just want to see x and y's
: curve as two time series.
: What function I should use?
: Thanks.

J*****n
发帖数: 4859
4

say I have two vectors x and y.
I would like to use plot function only.
plot(x)
then plot(y) will give the graphic in the new chart.
What function I should use to let R to plot y in the previous chart without
cleaning the old one.
Thank you.

【在 m****e 的大作中提到】
: lines()?
O*****y
发帖数: 222
5
plot(x,type="l")
points(y, type="l")
强烈推荐看一下 An introduction to R

without

【在 J*****n 的大作中提到】
:
: say I have two vectors x and y.
: I would like to use plot function only.
: plot(x)
: then plot(y) will give the graphic in the new chart.
: What function I should use to let R to plot y in the previous chart without
: cleaning the old one.
: Thank you.

1 (共1页)
进入Statistics版参与讨论
相关主题
bond price data clearn (转载)请教一个r的问题
关于基因表达的统计学问题, 不知发这是否合适R: how to convert a scatter plot to a contour color plot?
请教一个用R画图的问题求助--基因之间表达量回归分析软件
How to selectively plot data in RSAS plot question
adding colors to data points in scatter plot in R如何做microarray的scatter plot图?
[合集] 请教一个统计问题data prediction by regression or better ways
quick question in RPCA作图
为什么不能把ABLINE加到散点图中了一般什么样的数据,分析起来要做log transformation?
相关话题的讨论汇总
话题: plot话题: chart话题: curves话题: what话题: multi