代码改变世界

随笔分类 -  Python

MySQL InnoDB 群集–在Windows上设置InnoDB群集

2019-10-12 23:09 by Dorisoy, 1062 阅读, 收藏,
摘要: InnoDB集群最需要的功能之一是Windows支持,我们现在已将其作为InnoDB Cluster 5.7.17预览版 2的一部分提供。此博客文章将向您展示如何在MS Windows 10上运行InnoDB集群。64位系统。 我们将执行以下步骤。 下载包 安装 创建一个InnoDB群集沙箱配置 引 阅读全文

RFM客户价值分类

2019-10-06 20:50 by Dorisoy, 1397 阅读, 收藏,
摘要: 调用函数处理后: 阅读全文

合格大数据分析师应该具备的技能

2019-10-05 22:15 by Dorisoy, 2160 阅读, 收藏,
摘要: 阶段一、业务数据分析师 课程一、数据挖掘/分析师之硬技能 - 必备常用工具使用与高级技巧 本部分内容主要介绍了数据挖掘、分析师、数据产品经理必备的常用工具的,主要有 Excel,Visio,Xmind,PPT的涉及图表数据分析方面的高级技巧,包括但不限于:数据透视表演练、Vision跨职能流程图演练 阅读全文

RFM模型的变形LRFMC模型与K-means算法的有机结合

2019-10-05 19:00 by Dorisoy, 4676 阅读, 收藏,
摘要: 应用场景: 可以应用在不同行业的客户分类管理上,比如航空公司,传统的RFM模型不再适用,通过RFM模型的变形LRFMC模型实现客户价值分析;基于消费者数据的精细化营销 应用价值: LRFMC模型构建之后使用了经典的聚类算法-K-Means算法来对客户进行细分,而不是传统的来与参考值对比进行手工分类, 阅读全文

用于 Quinella/Exacta/Trifecta/Pick Four/Pick Six/Quaddie/Superfecta 7大规则的测试

2019-09-28 11:59 by Dorisoy, 338 阅读, 收藏,
摘要: 上2篇给了详细API 设计,下面我们来模拟测试下: Quinella: Here is the output: 2 42.5 (1, 2) 15.000 (1, 4) 27.500 Calculation Time: 0.001 Exacta: self.bet_type = "Exacta" se 阅读全文

How to Construct the Input Bet String

2019-09-28 11:39 by Dorisoy, 320 阅读, 收藏,
摘要: The purpose of this section is to describe the format of the string which will submitted to the Python bet processor strats.py. This string is a serie 阅读全文

Odds calculation required for the python strategy library

2019-09-28 11:33 by Dorisoy, 520 阅读, 收藏,
摘要: Bet Class Here is an example of the expected string input on instantiation of the class. It is expecting a string using the POST method in a cgi scrip 阅读全文

ImportError with IronPython in C#

2016-04-03 11:59 by Dorisoy, 474 阅读, 收藏,
摘要: I was using IronPython to execute python code inside my C# implementation lately, and I encountered this error when trying to use xmlrpclib: It was re 阅读全文

Unity 捕获IronPython脚本错误

2016-04-03 11:57 by Dorisoy, 690 阅读, 收藏,
摘要: using System; using System.Collections.Generic; using System.IO; using System.Reflection; using System.Text; using System.Windows.Forms; using IronPython.Hosting; using IronPython.Runtime; using Iro... 阅读全文

在C#环境中动态调用IronPython脚本(二)

2016-04-03 11:56 by Dorisoy, 989 阅读, 收藏,
摘要: 一、Python数据类型与C#数据类型的对应 Python中数据类型中的简单类型,例如int,float,string可以对应到C#环境中的int32,double,string,这些对应比较直观,Python中的复杂数据类型,例如List,Set等是C#环境中没有的,好在IronPython提供了 阅读全文