我正在做一个项目,我需要计算一些数据的矛兵排名,目前我的程序可以计算矛兵排名,只要他们没有平局。我会使用现有的单位,但我需要在字符串网格中显示排名值,以及它们的排名,而不仅仅是 Spearmans 值本身。我在想出一个解决方案时遇到了麻烦,该解决方案允许对绑定值排名进行平均,以便在存在绑定数据时计算测试。谢谢你的时间。
这是斯皮尔曼等级
这是我到目前为止的代码,这只是对值进行排序和排名,实际的 spearmans 值是在另一个过程中计算的
type Tspearman = record
x : string;
y : string;
xrank : string;
yrank : string;
d : string;
d2 : string;
end;
procedure TForm1.SortRank();
var
s:string;
P2, P2plus1,q : single;
Position_1, Position_2,i: Integer;
Temporary : TSpearman;
t:string;
begin
for Position_1 := 1 to ListBoxSP.Items.Count-1 do //Length(data) - 1 do
begin
for Position_2 := 1 to ListBoxSP.Items.Count-2 do //( Length( data ) - 2 ) do
begin
P2 := StrToFloat(data[ Position_2 ].x);
P2plus1 := StrToFloat(data[ Position_2 + 1 ].x );
if P2 > P2plus1 then // ascending
then
begin
Temporary := data[ Position_2 ];
data[ Position_2 ] := data[ Position_2 + 1 ];
data[ Position_2 + 1 ] := Temporary;
end;
end;
end;
For i :=1 to ListBoxSP.Items.Count
do
begin
data[i].xrank := IntToStr(i);
end;
for Position_1 := 1 to ListBoxSP.Items.Count-1 do //Length(data) - 1 do
begin
for Position_2 := 1 to ListBoxSP.Items.Count-2 do //( Length( data ) - 2 ) do
begin
P2 := StrToFloat(data[ Position_2 ].y);
P2plus1 := StrToFloat(data[ Position_2 + 1 ].y );
if P2 > P2plus1 then // ascending
begin
Temporary := data[ Position_2 ];
data[ Position_2 ] := data[ Position_2 + 1 ];
data[ Position_2 + 1 ] := Temporary;
end;
end;
end;
For i :=1 to ListBoxSP.Items.Count
do
begin
data[i].yrank := IntToStr(i);
end;
For i:=1 to ListBoxSP.Items.Count //This calculates the d values
do
begin
data[i].d := FloatToStr(StrToFloat(data[i].xrank)-StrToFloat(data[i].yrank));
end;
For i:=1 to ListBoxSP.Items.Count
do
begin
data[i].d2 := data[i].d;
q:= sqr(StrToFloat(data[i].d2));
data[i].d2 := FloatToStr(q);
end;
end;