1 Continuous Dependent Variable with normal distribution

1 (2 Level) Categorical Independent Variable

Task Completion time

Subject

Interface 1

Interface 2

1

12.9

16

2

5.7

7.5

3

16

16

4

14.3

15.7

5

2.4

13.2

A paired t-test measures whether means from a within-subjects test group vary over 2 test conditions. The paired t-test is commonly used to compare a sample group’s scores before and after an intervention. In HCI practice, the paired t-test is also commonly
used to compare how a group of subjects perform in two different test conditions [12].

In ‘Tradeoffs in Displaying Peripheral Information’ [7], Maglio and Campbell test distraction level of peripheral displays. As part of the experiment,
test subjects perform a complex editing task. The performance measure is the number of correct edits they complete. In a second condition, subjects also periodically monitor a peripheral display containing miscellaneous news headlines. The performance measure
in the second condition incorporates the number of news headlines they remember.

The research team tests whether there is a significant difference in the number of edits the subjects’ complete in condition 1 (no peripheral display present) and condition 2 (peripheral display present). They demonstrate a valid application of the paired
t-test in their analysis. First, the paired t-test is applicable when measuring how a static group of subjects perform in two conditions, and this requirement is met. Second, the paired t-test is appropriate when the independent variable is dichotomous. In
their experiment, the two test conditions, (presence of a peripheral display or lack thereof) fulfill the requirement. Score on the editing task serves as the continuous dependent variable. Finally, 29 subjects participate in the experiment, so the research
team is marginally safe in assuming the dependent variable followed a normal distribution (the central limit theorem proves distribution is normal with a sample size of 30 or more). The research team finds a significant difference in the number of edits completed
in the two test conditions.

The paired t-test is similar to the repeated measures ANOVA test. Both can be used to compare how a static group performs in varying test conditions. The difference is that the paired t-test is used when the independent variable has two levels. Repeated
measures ANOVA is used when the independent variable has more than two levels. So, for example, if the researchers had tested three conditions, the appropriate test would have been repeated measures ANOVA rather than a paired t-test.

Values to report:

·        t value

·        degrees of freedom

·        p value

Paired t-test的更多相关文章

  1. two sample ttest & paired ttst

    来源:http://www.pinzhi.org/thread-1023-1-1.html 成对t检验Paired Test是对来自同一总体的样本,在不同条件影响下获取的2组样本进行分析,以评价不同条 ...

  2. SPM paired t-test步骤

    首先感谢大神空里流霜耐心的讲解,这篇笔记内容主要是整理他的谆谆教导,虽然他也看不到>< 所有数据都要经过平滑. Paired t-test虽然在2nd-level analysis中,但是 ...

  3. 怎么从bam文件中提取出比对OR没比对上的paired reads | bamToFastq | STAR

    折腾这么多都是白瞎,STAR就有输出没有别对上的pair-end reads的功能 参见:How To Filter Mapped Reads With Samtools I had the same ...

  4. Differential expression analysis for paired RNA-seq data 成对RNA-seq数据的差异表达分析

    Differential expression analysis for paired RNA-seq data 抽象背景:RNA-Seq技术通过产生序列读数并在不同生物条件下计数其频率来测量转录本丰 ...

  5. [论文理解] CornerNet: Detecting Objects as Paired Keypoints

    [论文理解] CornerNet: Detecting Objects as Paired Keypoints 简介 首先这是一篇anchor free的文章,看了之后觉得方法挺好的,预测左上角和右下 ...

  6. Proteomes of paired human cerebrospinal fluid and plasma: Relation to blood-brain barrier permeability in older adults (文献分享一组-潘火珍)

    题目:Proteomes of paired human cerebrospinal fluid and plasma: Relation to blood-brain barrier permeab ...

  7. 洛谷 P3669 [USACO17OPEN]Paired Up 牛牛配对

    P3669 [USACO17OPEN]Paired Up 牛牛配对 题目描述 Farmer John finds that his cows are each easier to milk when ...

  8. 【论文阅读】CornerNet: Detecting Objects as Paired Keypoints

    以下内容将介绍ECCV2018的一篇目标检测的文章<CornerNet: Detecting Objects as Paired Keypoints>.该文章讲述了一个老子就是不用anch ...

  9. CornerNet: Detecting Objects as Paired Keypoints

    CornerNet是一种anchor free的目标检测方法,不需要设置anchor,而是通过检测关键点(Keypoints),即目标的左上角(Top-Left Corners)和右下角(Bottom ...

随机推荐

  1. Android studio提速配置

    1. C:\Program Files\Android\Android Studio\bin studio64.exe.vmoptions 2.创建 gradle.properties 配置文件

  2. 171. Excel表列序号

    题目:给定一个Excel表格中的列名称,返回其相应的列序号. 例如, A -> 1 B -> 2 C -> 3 ... Z -> 26 AA -> 27 AB -> ...

  3. 【WPF】实现类似QQ聊天消息的界面

    最近公司有个项目,是要求实现类似 QQ 聊天这种功能的. 如下图 这没啥难的,稍微复杂的也就表情的解析而已. 表情在传输过程中的实现参考了新浪微博,采用半角中括号代表表情的方式.例如:“abc[dog ...

  4. 请教:WCF速度似乎比Remoting慢

    两段极为相似的代码,主要想看看过输与序列化过程两者的用时差异,结果10000次的调用,WCF用了11秒多,remoting用了5秒不到!这是测试的源代码 Remoting的服务端 public cla ...

  5. Eclipse 中 SVN 插件的安装与使用

    下载和安装SVN插件 插件在线安装 可以选择在线安装插件的方式,就是使用eclipse里Help菜单的“Install New Software”,通过输入SVN地址,直接下载安装到eclipse里. ...

  6. Python3入门机器学习经典算法与应用

    <Python3入门机器学习经典算法与应用> 章节第1章 欢迎来到 Python3 玩转机器学习1-1 什么是机器学习1-2 课程涵盖的内容和理念1-3 课程所使用的主要技术栈第2章 机器 ...

  7. Java的组合排列问题

    从4个人中选2个人参加活动,一共有6种选法. 从n个人中选m个人参加活动,一共有多少种选法?C(m/n)=C((m-1)/(n-1))+C(m/(n-1))数学算法 public class Main ...

  8. HoloLens开发手记 - HoloLens上的应用视图 App views on HoloLens

    运行在HoloLens上的应用可能包含2种视图,分别是全息视图和2D视图.应用可以在全息视图和2D视图之间转换,这常被用于访问系统提供的接口,例如虚拟键盘.拥有至少一个全息视图的应用被归类为全息应用. ...

  9. oracle无法启动asm实例记录

    首先查看asm进程ps aux|grep asmasm进程没起进行下面操作su - gridsrvctl start asmexit查看ora进程ps aux|grep oraora进程没起进行下面操 ...

  10. Intellij-插件安装-JRebel热部署插件安装

    环境介绍: Win7.JDK1.8.maven+jetty插件.SpringMVC.Intellij IDEA 2018.1.2 安装插件: 在线安装: Settings --> Plugins ...