由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 怎么画同心圆, r
相关主题
[R]log scale的极小数的加法请教一下图中公式是怎么推出来的? (转载)
a question about least favorable prior请教R和 usenet的问题
弱问个线性变换的问题hierarchical models的goodness of fit checking (转载)
问一个概率问题求问一个matlab的问题
问个关于Mixture Posstion的问题请教高手:如何在winbugs里使用max(a,b)function?
R: what data structure is { }请教数学大虾们一个问题 (转载)
a question about wald test用EM求的MLE,但是observed likelihood 怎么算呢
X,Y iid normal, 请问X/Y的pdf如何求?请教大牛关于factorizatics theorem 来证明sufficent statistics
相关话题的讨论汇总
话题: theta话题: 同心圆话题: vect话题: sort话题: 999
进入Statistics版参与讨论
1 (共1页)
t***r
发帖数: 157
1
有没有什么比较简便的方法方程画10个同心圆
F*******h
发帖数: 136
2
vect_r<-c(1:10)
theta<-c(0:999)/999*2*pi
c_theta<-cos(theta)
s_theta<-sin(theta)
cir.scatter<-function(r){
f<-array(0,c(1000,2))
f[,1]<-r*c_theta
f[,2]<-r*s_theta
return(f)
}
n<-length(vect_r)
sort_r<-sort(vect_r,decreasing=T)
plot(cir.scatter(sort_r[1]),type="l",xlab="x",ylab="y")
for(i in 2:n){
lines(cir.scatter(sort_r[i]))
}

【在 t***r 的大作中提到】
: 有没有什么比较简便的方法方程画10个同心圆
1 (共1页)
进入Statistics版参与讨论
相关主题
请教大牛关于factorizatics theorem 来证明sufficent statistics问个关于Mixture Posstion的问题
问个matrix的操作问题R: what data structure is { }
Problem with Maximum Likelihood Estimationa question about wald test
likelihood ratio asymptotic approximationsX,Y iid normal, 请问X/Y的pdf如何求?
[R]log scale的极小数的加法请教一下图中公式是怎么推出来的? (转载)
a question about least favorable prior请教R和 usenet的问题
弱问个线性变换的问题hierarchical models的goodness of fit checking (转载)
问一个概率问题求问一个matlab的问题
相关话题的讨论汇总
话题: theta话题: 同心圆话题: vect话题: sort话题: 999