codecamp

统计 - 点图

点图或点图是由在相当简单的比例上绘制的数据点组成的统计图表,通常使用填充圆圈。

例子

问题陈述:

研究“你在多大程度上需要吃早餐?" 有以下结果:

分钟 0 1 2 3 4 5 6 7 8 9 10 11 12
6 2 3 5 2 5 0 0 2 3 7 4 1

绘制点图,分钟吃早餐!

解决方案:

6个人需要0分钟吃早餐(他们很可能没有早餐!),2个人说他们只是烧一点钟吃饭,等等。 这里是点图:

Dot Plot
统计 - 合作效率的变化
统计 - 假设检验
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Statistics Tutorial

Statistics Useful Resources

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }