我做了小调查,得到了这样的数据:
|-------------| Yes | No | Dont_Know |
|-------------| | | |
| Employee | 60 | 5 | 5 |
| Workers | 17 | 0 | 1 |
| Businessmen | 71 | 5 | 10 |
| Jobless | 4 | 30 | 0 |
R代码
dt <- data.frame(workers = c("Employee",
"Workers",
"Businessmen",
"Jobless"),
yes = c(60,17,71,4),
no = c(5,0,5,30),
dont_know = c(5,1,10,0)
)
- 我必须做什么样的测试,如果我想证明失业者经常选择不回答?
- Jobless 和 Businessmen 答案之间的差异是否显着?
- 那么其他群体呢?
- 我可以从这些数据中获得哪些其他信息,或者我可以从这些数据中提出什么样的问题?