1. jupyter.fun >
  2. 数理统计、机器学习入门

数理统计、机器学习入门

目录和附件

  • 描述统计
    • 推断统计
      • 线性回归
        • 逻辑回归
          • 分类模型评估
            • KNN 算法
              • 朴素贝叶斯
                • 决策树
                  • K-Means 算法
                    jupyter附件
                    • statistics1.ipynb (50 KB)
                    • statistics2.ipynb (47 KB)
                    • statistics3.ipynb (36 KB)
                    • statistics4.ipynb (70 KB)
                    • statistics5.ipynb (40 KB)
                    • statistics6.ipynb (11 KB)
                    • statistics7.ipynb (22 KB)
                    • statistics8.ipynb (94 KB)
                    • statistics9.ipynb (439 KB)

                    🏠明文 AI 编程
                    • Python
                      • 数字类型
                        • 整数及其位运算
                        • 布尔值及布尔运算
                        • 浮点数
                        • 复数
                        • 数字运算
                      • 字符串
                        • 字符串拼接
                        • 转义字符
                        • str.count
                        • str.replace
                        • str.expandtabs
                        • str.split
                        • str.rsplit
                        • str.partition
                        • str.rpartition
                        • str.splitlines
                        • str.strip
                        • str.lstrip
                        • str.rstrip
                        • str.find
                        • str.rfind
                        • str.index
                        • str.rindex
                        • str.join
                        • str.startswith
                        • str.endswith
                        • str.ljust
                        • str.center
                        • str.rjust
                        • str.format
                        • str.format_map
                        • f-string 格式化
                        • 字符串操作符
                        • str.encode
                        • str.capitalize
                        • str.casefold
                        • str.lower
                        • str.title
                        • str.upper
                        • str.swapcase
                        • str.zfill
                        • str.translate
                        • str.maketrans
                        • str.isalnum
                        • str.isalpha
                        • str.isdecimal
                        • str.isdigit
                        • str.isnumeric
                        • str.islower
                        • str.isupper
                        • str.istitle
                        • str.isascii
                        • str.isidentifier
                        • str.isprintable
                        • str.isspace
                        • str.removeprefix
                        • str.removesuffix
                      • 列表概述
                        • 列表推导式
                        • 列表的索引和切片
                        • list.clear
                        • 列表操作符
                        • list.append
                        • list.extend
                        • list.insert
                        • list.sort
                        • list.reverse
                        • list.pop
                        • list.remove
                        • list.count
                        • list.index
                        • list.copy
                      • 元组
                        • tuple.count
                        • tuple.index
                        • 元组操作符
                      • 序列
                        • range
                        • 序列索引和切片
                        • 序列通用操作
                      • 集合
                        • set.isdisjoint
                        • set.issubset
                        • set.issuperset
                        • set.union
                        • set.intersection
                        • set.difference
                        • set.symmetric_difference
                        • set.copy
                        • set.update
                        • set.intersection_update
                        • set.difference_update
                        • set ^= other
                        • set.add
                        • set.remove
                        • set.discard
                        • set.pop
                        • set.clear
                      • 字典
                        • dict.keys
                        • dict.values
                        • dict.items
                        • dict.get
                        • dict.copy
                        • dict.pop
                        • dict.popitem
                        • dict.fromkeys
                        • dict.clear
                        • dict.setdefault
                        • dict.update
                        • 字典遍历
                        • 字典操作符
                      • 其他类型
                        • None
                        • 其他内置类型
                      • 操作符
                        • 比较运算符
                        • 操作符优先级
                        • 操作符特殊用法
                      • 语句
                        • 赋值语句
                        • if
                        • for
                        • while
                        • break
                        • continue
                        • del
                        • pass
                        • def
                        • return
                        • yield
                        • class 语句
                        • try
                        • raise
                        • with
                        • assert
                        • import
                        • global
                        • nonlocal
                      • 内置函数
                        • all()
                        • any()
                        • ascii()
                        • bin()
                        • bool
                        • bytes
                        • callable()
                        • chr()
                        • classmethod
                        • compile()
                        • complex
                        • delattr()
                        • dict
                        • dir()
                        • divmod()
                        • enumerate
                        • eval()
                        • exec()
                        • filter
                        • float
                        • format()
                        • frozenset
                        • getattr()
                        • globals()
                        • hasattr()
                        • hash()
                        • help
                        • hex()
                        • id()
                        • input()
                        • int
                        • isinstance()
                        • issubclass()
                        • iter()
                        • len()
                        • list
                        • locals()
                        • map
                        • max()
                        • min()
                        • next()
                        • object
                        • oct()
                        • open()
                        • ord()
                        • pow()
                        • print()
                        • property
                        • range
                        • repr()
                        • reversed
                        • round()
                        • set
                        • setattr()
                        • slice
                        • sorted()
                        • staticmethod
                        • str
                        • sum()
                        • super
                        • tuple
                        • type
                        • vars()
                        • zip
                      • 函数
                        • 函数定义
                        • 函数形参
                        • 函数返回值
                        • 递归函数
                        • 函数文档
                        • 函数调用
                        • lambda 函数
                        • 生成器函数
                      • 错误和异常
                        • 处理异常
                        • 抛出异常
                        • 自定义异常
                        • finally
                      • 文件
                        • 读取文件内容
                        • 文件写入内容
                      • 模块
                        • 创建模块
                        • 可执行文件
                        • 导入操作
                      • 面向对象
                        • 类定义
                        • 实例
                        • 对象
                        • 名称
                        • 变量
                        • 属性
                        • 方法
                        • 命名空间
                        • 作用域
                        • 创建实例
                        • 属性操作
                        • 方法操作
                        • 类继承
                    • 正则表达式
                    • Numpy
                    • Pandas
                    • Matpotlib
                    • 机器学习入门
                      • 描述统计
                      • 推断统计
                      • 线性回归
                      • 逻辑回归
                      • 分类模型评估
                      • KNN 算法
                      • 朴素贝叶斯
                      • 决策树
                      • K-Means 算法
                    更多
                    • 关注我

                    •  
                    •  
                    • 清理历史记录

                    🏠明文视界 AI 资源站

                    🏠明文 AI 编程

                    🏠MWAI.Studio

                    ©2025 明文