由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - R: distance matrix
相关主题
问一个和统计相关的算法面试题 (转载)which university has long-distance pH.D program
问一个regression的弱问题请问一个sas距离矩阵输出格式的问题(PROC DISTANCE)
[合集] 问一个和统计相关的算法面试题 (转载)sas proc distance
US News Ranking-MPH-2008急问:需要take 一个grant funded position 吗?
诚心请教Mahalanobis Distance计算online degree or distance education?
请问有哪些学校有ONLINE DISTANCE BIOSTA/STA MS PROGRAMsas大牛们这个要怎么实现呀
请教一个多元和距离的问题[转载]找工作中。。急求教:13.5万在湾区或者9。5万在DC,大家会选择哪个。。?
How to pre-index 100,000+ text files for keyword search?Apple 电话面试 面经
相关话题的讨论汇总
话题: distance话题: matrix话题: outer话题: function话题: 100
进入Statistics版参与讨论
1 (共1页)
f******9
发帖数: 267
1
再请教师兄师姐们一个问题:
有100个数,如何用R算出它们彼此间的距离,然后得到一个100*100的matrix呢?
谢谢!
D******n
发帖数: 2836
2
outer(A,A,"-")
s*r
发帖数: 2757
3
what if we want the squared difference? distances cannot be negative

【在 D******n 的大作中提到】
: outer(A,A,"-")
s*******f
发帖数: 148
4
like this@@?
> distance<-function(x,y) {(x-y)^2}
> outer(A,A,distance)

【在 s*r 的大作中提到】
: what if we want the squared difference? distances cannot be negative
s*r
发帖数: 2757
5
thx

【在 s*******f 的大作中提到】
: like this@@?
: > distance<-function(x,y) {(x-y)^2}
: > outer(A,A,distance)

f******9
发帖数: 267
6
Thanks very much!

【在 D******n 的大作中提到】
: outer(A,A,"-")
f******9
发帖数: 267
7
thanks@@@

【在 s*******f 的大作中提到】
: like this@@?
: > distance<-function(x,y) {(x-y)^2}
: > outer(A,A,distance)

D******n
发帖数: 2836
8
hmm, i was just lazy
outer(A,A,function(x,y) abs(x-y))
g********r
发帖数: 8017
9
dist()

【在 f******9 的大作中提到】
: 再请教师兄师姐们一个问题:
: 有100个数,如何用R算出它们彼此间的距离,然后得到一个100*100的matrix呢?
: 谢谢!

f******9
发帖数: 267
10
Cool! thx

【在 D******n 的大作中提到】
: hmm, i was just lazy
: outer(A,A,function(x,y) abs(x-y))

f******9
发帖数: 267
11
thanks very much

【在 g********r 的大作中提到】
: dist()
1 (共1页)
进入Statistics版参与讨论
相关主题
Apple 电话面试 面经诚心请教Mahalanobis Distance计算
有关feature selection的问题求助 (转载)请问有哪些学校有ONLINE DISTANCE BIOSTA/STA MS PROGRAM
求个 normalized euclidean distance 的公式请教一个多元和距离的问题
[合集] way to do exclusive outer join by proc sqlHow to pre-index 100,000+ text files for keyword search?
问一个和统计相关的算法面试题 (转载)which university has long-distance pH.D program
问一个regression的弱问题请问一个sas距离矩阵输出格式的问题(PROC DISTANCE)
[合集] 问一个和统计相关的算法面试题 (转载)sas proc distance
US News Ranking-MPH-2008急问:需要take 一个grant funded position 吗?
相关话题的讨论汇总
话题: distance话题: matrix话题: outer话题: function话题: 100