用于计算多元序列相关性的动态函数

时间:2016-12-27 05:13:50

标签: r

我有一个看起来像的数据集:

lm
TouchPoints   Gross_LM   Gross_rev     Score        Local_Rev_LM
    Y           57.41      96.96       0.87             0.36
    N           59.87      40.6        0.51             3.38
    Y          129.94      228.7       0.8              20.68
    N          148.58      205.4       0.65             26.8
    Y           161.1      179.95      0.04             23.34

我使用简单的代码来获得两个变量之间的相关性,即TouchPoints& Gross_LM:

library(polycor)
polyserial(lm$Gross_LM, lm$TouchPoints)
[1] 0.006737169

现在,我想计算固定分类值(即TouchPoints)与其他所有变量(Gross_LM,Gross_rev等)之间的多序列相关性。

换句话说,我想拥有动态函数,它将计算" n"的多元序列相关性。行数。

动态函数应以下列方式保存输出:

nm
Variables       Polyserial Correlation with TouchPoints
Gross_LM          0.006737169
Gross_rev         0.00396954
Score             0.1178589
Local_Rev_LM     -0.2872475

提前感谢您提供解决方案!!

0 个答案:

没有答案