LaTex符号备忘录 Posted on 2022-5-6 | In 数学 , LaTeX | Words count in article: 946 | Reading time ≈ 3 LaTeX符号备忘录 本篇文章的主题:LaTeX Read more »
极不均衡样本的信用卡欺诈分析 Posted on 2022-5-2 | In Machine learning , kaggle | Words count in article: 5.8k | Reading time ≈ 28 非均衡样本下的信用卡欺诈分析 本文是针对一份kaggle上信用卡数据的建模分析,主要内容包含: 理解数据:通过直方图、箱型图等辅助理解数据分布 预处理:归一化和分布情况;数据分割 随机采样:上采样和下采样,主要是欠采样(下采样) 异常检测:如何从数据中找到异常点,并且进行删除 数据建模:利用逻辑回归和神经网络进行建模分析 模型评价:分类模型的多种评价指标 Read more »
Docker从放弃到入门 Posted on 2022-4-28 | In linux , docker | Words count in article: 8.8k | Reading time ≈ 40 2万+字,重学Docker容器 最近网上看到一篇关于Docker容器文章,总结的非常全面,非常适合入门,主要内容包含: Read more »
Python实现跳词云舞 Posted on 2022-4-27 | In python , 实战 | Words count in article: 2.2k | Reading time ≈ 10 做刘教练的Python-Boys 本文是一个非常完整的Python实战项目,主要内容包含: Read more »
Python岗位背后的奥秘 Posted on 2022-4-24 | In pandas , 数据分析 | Words count in article: 1.4k | Reading time ≈ 6 探索Python岗位后面的奥秘 本文记录的是一个基于Job岗位的数据分析案例。 Read more »
图解Pandas一周年 Posted on 2022-4-24 | In pandas , 教程 | Words count in article: 1.4k | Reading time ≈ 5 《图解Pandas教程》:一周年啦 今天4-24是个特殊的日子:尤而小屋的《图解Pandas》系列一周年! Read more »
Pandas操作Excel大全 Posted on 2022-4-23 | In pandas , 教程 | Words count in article: 3.5k | Reading time ≈ 17 Pandas操作Excel文件 本文记录的是如何通过Pandas来读取Excel文件,以及将DataFrame保存到Excel文件中。 Read more »
Pandas随机取数 Posted on 2022-4-22 | In pandas , 教程 | Words count in article: 659 | Reading time ≈ 3 Pandas随机取数 本文记录的是如何使用Python、pandas、numpy、scikit-learn来实现随机打乱、抽取和切割数据。主要的方法包含: sample shuffle np.random.permutation train_test_split Read more »
机器学习算法-关联规则分析 Posted on 2022-4-17 | In Machine learning , 机器学习实战 | Words count in article: 3.9k | Reading time ≈ 15 关联分析 关联分析是一种从大规模的数据集中寻找有趣关系的方法。一个经常被用到关联分析的例子:购物篮分析。通过查看哪些商品经常在一起被顾客购买,可以帮助商店去了解用户的购买行为。 本文主要内容: Read more »
Pandas索引的修改与重置 Posted on 2022-4-16 | In pandas , 教程 | Words count in article: 1.3k | Reading time ≈ 5 Pandas索引的设置与修改 本文主要是介绍Pandas中行和列索引的4个函数操作: set_index reset_index set_axis rename Read more »