计算平均体重减轻

时间:2016-07-09 18:09:23

标签: sas

我创建了一个小的减肥数据

<VirtualHost *:80>
    ServerName  ip_address
    ServerAdmin webmaster@localhost

    Alias /static/  /var/www/rent/static/

    Alias /media/  /var/www/rent/media/

    WSGIScriptAlias /   /var/www/rent/Rent/wsgi.py

    WSGIDaemonProcess   Rent  python-path=/var/www/rent:/root/.virtualenvs/rent/lib/python2.7/site-packages

    WSGIProcessGroup    Rent

    <Directory /var/www/rent/static>
        Options -Indexes
        Order deny,allow
        Allow from all
    </Directory>

    <Directory /var/www/rent/media>
        Options -Indexes
        Order deny,allow
        Allow from all
    </Directory>

    LogLevel warn

    ErrorLog    ${APACHE_LOG_DIR}/error.log
    CustomLog   ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

如何计算平均损失以及团队平均损失?

3 个答案:

答案 0 :(得分:0)

简单如下:

false

答案 1 :(得分:0)

使用Proc手段。这是使用class语句时的默认输出。 OP并不表示他们是否需要表格或报告。

Proc means data=have;
Class team;
Var loss;
 Run;  

这会在整体和团队级别生成所有基本统计信息。要仅获得平均值,请将关键字mean添加到proc语句中。

 Proc means data=have mean;

答案 2 :(得分:0)

Proc摘要的工作方式与proc的含义大致相同......

proc summary data=table;
  class team;
  var loss;
  output out = summrydat
        mean = avgloss;
run;

在输出数据集中,第一行(_TYPE_ = 0)给出总平均值,而后续行(_TYPE_ = 1)给出分组平均值。