日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > python >内容正文

python

python怎么做q检验_统计学_Cochran’s Q Test(python代码实现)

發(fā)布時(shí)間:2024/10/8 python 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python怎么做q检验_统计学_Cochran’s Q Test(python代码实现) 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

醫(yī)藥項(xiàng)目統(tǒng)計(jì)聯(lián)系QQ:231469242

cochran Q 測(cè)試用于非參數(shù)檢驗(yàn),特別是對(duì)分,二分

成功或失敗

有效或無效

活著或死了

有缺陷的或無缺陷的

python代碼

無顯著差異,結(jié)論一致

# -*- coding: utf-8 -*-

# Import standard packages

import numpy as np

import pandas as pd

# additional packages

from statsmodels.sandbox.stats.runs import cochrans_q

obs = np.array([[1,1,0,1,0,1,1,1,0,0,1,1],

[1,1,1,1,0,1,1,1,0,1,1,1],

[1,1,0,0,0,1,1,0,1,0,1,1]])

def cochranQ(obs):

'''Cochran's Q test: 12 subjects are asked to perform 3 tasks. The outcome of each task is "success" or

"failure". The results are coded 0 for failure and 1 for success. In the example, subject 1 was successful

in task 2, but failed tasks 1 and 3.

Is there a difference between the performance on the three tasks?

'''

# I prefer a DataFrame here, as it indicates directly what the values mean

df = pd.DataFrame(obs.T, columns = ['Diet1', 'Diet2', 'Diet3'])

# --- >>> START stats <<< ---

(Q, pVal) = cochrans_q(df)

# --- >>> STOP stats <<< ---

print('\nCOCHRAN\'S Q -----------------------------------------------------')

print('Q = {0:5.3f}, p = {1:5.3f}'.format(Q, pVal))

if pVal < 0.05:

print("H1 wins,There is a significant difference between the three tasks.")

else:

print("H0 wins,There was no significant change")

cochranQ(obs)

測(cè)試,12個(gè)對(duì)象參加三種考試,檢驗(yàn)三種考試難度是否一樣。

H0,三種考試難度相同

H1,三種考試難度不同,至少有一個(gè)簡(jiǎn)單或難

三種考試有顯著差異

總結(jié)

以上是生活随笔為你收集整理的python怎么做q检验_统计学_Cochran’s Q Test(python代码实现)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。