2006年07月06日 星期四 12:55
不知道是否有python实现的"80/20分析"的代码呢?一个函数足以,目标是实现对输入 序列的个数和标量的80/20分析,保留其中80的部分。
2006年07月06日 星期四 12:59
能不能介绍一下80/20分析这个概念先! 这对它不是太了解? 谢谢 !! "Xie Yanbo" <xieyanbo at gmail.com> Sent by: python-chinese-bounces at lists.python.cn 2006-07-06 12:55 Please respond to python-chinese at lists.python.cn To python-chinese at lists.python.cn cc Subject [python-chinese] 80/20分析 不知道是否有python实现的"80/20分析"的代码呢?一个函数足以,目标是实现对输 入 序列的个数和标量的80/20分析,保留其中80的部分。 _______________________________________________ python-chinese Post: send python-chinese at lists.python.cn Subscribe: send subscribe to python-chinese-request at lists.python.cn Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn Detail Info: http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060706/61b4cd42/attachment.html
2006年07月06日 星期四 13:12
On 7/6/06, andy.bu at kodak.com <andy.bu at kodak.com> wrote: > > 能不能介绍一下80/20分析这个概念先! > 这对它不是太了解? > 这与80/20法则有关: http://zh.wikipedia.org/wiki/%E5%B8%95%E7%B4%AF%E6%89%98%E6%B3%95%E5%88%99 简单说就是80%的贡献来自于20%的个体。比如80%的国家税收来自20%的企业,80%的bug来自于 20%的代码,等等。在实际中,并不是精确的80对20的比例,可能是70对30,或者60对40。80/20 分析就是基于这个法则,计算占X%的少数个体提供X%的贡献中这个X的数值及对应的个体的。 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060706/bd0e949e/attachment.html
2006年07月06日 星期四 13:25
哈哈..20% 政府官员,吃喝玩乐的$$$是,80% 人民供养 ----- Original Message ----- From: Xie Yanbo To: python-chinese at lists.python.cn Sent: Thursday, July 06, 2006 1:12 PM Subject: Re: [python-chinese] 80/20 分析 On 7/6/06, andy.bu at kodak.com <andy.bu at kodak.com> wrote: 能不能介绍一下80/20分析这个概念先! 这对它不是太了解? 这与80/20法则有关: http://zh.wikipedia.org/wiki/%E5%B8%95%E7%B4%AF%E6%89%98%E6%B3%95%E5%88%99 简单说就是80%的贡献来自于20%的个体。比如80%的国家税收来自20%的企业,80%的bug来自于 20%的代码,等等。在实际中,并不是精确的80对20的比例,可能是70对30,或者60对40。80/20 分析就是基于这个法则,计算占X%的少数个体提供X%的贡献中这个X的数值及对应的个体的。 ------------------------------------------------------------------------------ _______________________________________________ python-chinese Post: send python-chinese at lists.python.cn Subscribe: send subscribe to python-chinese-request at lists.python.cn Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn Detail Info: http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060706/c2de4789/attachment-0001.html
2006年07月06日 星期四 13:31
OK,我明白一些了,关注这帖!! 谢谢给出解释! ============================== "netkiller" <openunix at 163.com> Sent by: python-chinese-bounces at lists.python.cn 2006-07-06 13:25 Please respond to python-chinese at lists.python.cn To <python-chinese at lists.python.cn> cc Subject Re: [python-chinese] 80/20 分析 哈哈..20% 政府官员,吃喝玩乐的$$$是,80% 人民供养 ----- Original Message ----- From: Xie Yanbo To: python-chinese at lists.python.cn Sent: Thursday, July 06, 2006 1:12 PM Subject: Re: [python-chinese] 80/20 分析 On 7/6/06, andy.bu at kodak.com <andy.bu at kodak.com> wrote: 能不能介绍一下80/20分析这个概念先! 这对它不是太了解? 这与80/20法则有关: http://zh.wikipedia.org/wiki/%E5%B8%95%E7%B4%AF%E6%89%98%E6%B3%95%E5%88%99 简单说就是80%的贡献来自于20%的个体。比如80%的国家税收来自20%的企业,80%的 bug来自于 20%的代码,等等。在实际中,并不是精确的80对20的比例,可能是70对30,或者60 对40。80/20 分析就是基于这个法则,计算占X%的少数个体提供X%的贡献中这个X的数值及对应的 个体的。 _______________________________________________ python-chinese Post: send python-chinese at lists.python.cn Subscribe: send subscribe to python-chinese-request at lists.python.cn Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn Detail Info: http://python.cn/mailman/listinfo/python-chinese _______________________________________________ python-chinese Post: send python-chinese at lists.python.cn Subscribe: send subscribe to python-chinese-request at lists.python.cn Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn Detail Info: http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060706/99fd3753/attachment.htm
2006年07月06日 星期四 14:43
On 7/6/06, Xie Yanbo <xieyanbo at gmail.com> wrote: > > 不知道是否有python实现的"80/20分析"的代码呢?一个函数足以,目标是实现对输入 > 序列的个数和标量的80/20分析,保留其中80的部分。 > > 不是很清楚你的需求...这只是一条很简单的统计原理,谈不上什么实现吧。 一定要写的话,比如这样: #输入一组采样数据data(假设是个list) data.sort(reverse=True) total = sum(data) current = data[0] i=0 while currenthttp://lists.exoweb.net/pipermail/python-chinese/attachments/20060706/c84b86c1/attachment.html
Zeuux © 2025
京ICP备05028076号