0

我有一个数据集,它代表三年内的销售额:

data test;
input one two three average;
datalines;
10 20 30 .
20 30 40 .
10 30 50 .
10 10 10 .
;
run;

我正在寻找一种方法来找到三年的中间点,平均销售点

更新的数据集将读取

data test;
input one two three average;
datalines;
10 20 30 2
20 30 40 1.5
10 30 50 2.1
10 10 10 1.5
;
run;

因此,本质上是在寻找销售的中点发生在三年中的哪一部分。

欣赏。

编辑:我一直在尝试的重量和过程意味着

我一直在尝试使用 proc 方法和权重函数,但它并没有给我三年的平均分

proc means data=test noprint;
var one two three;
var one+two+three=total;
var (one+two+three)/3=Average; 
var Average/weight=Average_Year;

output out=testa2
    sum(Total) = 
    mean(Total) = ;
run;
4

1 回答 1

0

我认为你的第二个例子是错误的,正确的值average实际上是 1.833 而不是 1.5。如果我没看错,以下数据步骤代码可以满足您的需要:

data want;
  set test;
  array years[3] one two three;
  total = one + two + three;
  midpoint = total / 2;
  do i = 1 by 1 until(cum_total >= midpoint);
    cum_total = sum(cum_total,years[i]);
  end;
  average = i - 1 + (midpoint - (cum_total - years[i]))/years[i];
run;

我认为很难重现这个逻辑,proc means因为你的average数据并不直接对应于我知道的任何众所周知的统计数据。它更像是某种具有统一按比例分配的加权中位数。

于 2018-03-20T11:41:36.473 回答