SAS Proc Ttest发现差异和声明

时间:2016-10-22 06:10:38

标签: sas proc

class Square {
    static GLuint program;
    static const char *vertex = "hardcode";
    static const char *frag = "hardcode";
    static const char *cam = "harcode";

    static init();

    /// or somethig like
    static Initializer init(
            "harcode shader", "hardcode frag", "hardcode camera", 
            [&] (void) ->void {
                //this is the init function
            }
    );

public:

}

问题2测试两个联赛是否有不同的击球率。在你的结论中使用alpha = 0.02并计算平均值的98%置信区间。 问题3从第一个问题测试中看出A和S平均臭氧值的差异。在结论中使用alpha = 0.01。包括差异的99%置信区间。

所以我的问题是问题2是一个愚蠢的问题,但无论出于何种原因,我对你想做的事感到困惑。

对于问题3(我的主要问题),我如何使用一个proc ttest检查并查看A和S月之间的差异?正如你在上面看到的那样,我尝试使用Where语句,但当然这不起作用我很擅长从这里开始。此外,我在臭氧部分省略了一些月份数据,因为我无法正确格式化所有数据而不会让人感到非常困惑。

提前感谢您的帮助!

0 个答案:

没有答案