Chi-square 用途4

Data Science Day 6:

Chi-square application 3:

Test for Homogeneity of One Categorical Variable across serveral sample spaces.

We use theChi-square test for Homogeneityto evaluate if one single categorical variable has a similar distribution (or frequency proportion)across two or more sample spaces (or populations).

Example: 

Couple make-up companies wish to determine if there are differences in the sales market for China, USA, and Spain.

Customers China USA Spain

Buy 10000 2000 1000

Not Buy2013 391 212

H0(Null Hypotheses):The sales market has thesame distribution(frequency proportion) in China, USA, and Spain.

Solution:
we will useSciPypackage andchi2_contingencyfunction in Python.

Python Code:

country_buyer=np.array([[10000,2013],[2000,391],[1000,212]])
stats.chi2_contingency(country_buyer)

Result:

We havep-value= 0.69, so weacceptthe Null Hypotheses and conclude the Make up customerdistribution is the samein China, USA and Spain.

Data visualization:

We can see from the graph, the makeup customer has a similar distribution for China, USA, and Spain. It consolidated our statistical results.

Code:


I think it is human nature to pursue beauty and a decent amount of makeup does help men/women to level up our confidence, but I always remind myself don't be obsessed with external beauty.Everyone shines in our own way, and we are already pretty enough! After all, Venus has a broken arm.

To be continue...

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容