Inlfux 时序数据库 发表于 2018-10-03 | 分类于 计算机 , Inlfux | 安装安装文档: https://docs.influxdata.com/influxdb/v1.6/introduction/installation/ 个人建议使用 Docker 一键启动 (参考: https://hub.docker.com/_/influxdb/) run ... 阅读全文 »
CentOS 国内镜像地址 (有些支持Docker等) 发表于 2018-10-02 | 分类于 计算机 , OPS | 镜像版本网易: http://mirrors.163.com/ 阿里: https://opsx.alibaba.com/mirror 或者 http://mirrors.aliyun.com/ 腾讯: https://mirrors.cloud.tencent.com/ 科大: https://m ... 阅读全文 »
Python 数据挖掘分析 - NumPy Pandas 和 Matplotlib 发表于 2018-09-27 | 分类于 计算机 , Python | 使用函数库 Numpy 和 PandasNumpy用于创建一维数组和二维矩阵(以及多维), 并对其进行运算 numpy as nparr1 = np.a ... 阅读全文 »
Ubuntu 安装 Docker, Compose, Machine, Swarm 发表于 2018-09-24 | 分类于 计算机 , Docker | 安装 Docker有很多安装方式, 我喜欢一键脚本: 12curl -fsSL https://get.docker.com -o get-docker.shsudo sh get-docker.sh 参考官方文档: Docker: https://docs.docker.com/install/ ... 阅读全文 »
Python 数据挖掘分析 - 标准库与内置函数 发表于 2018-09-24 | 分类于 计算机 , Python | 标准库与数据操作模块模块即为函数集合的文件, 文件名作为全局的变量(__name__)可以被其他模块导入 # package file PriceAnalysis.py# 导入全部import PriceAnalysisPriceAnalysis.OpenPrice() ... 阅读全文 »
盛典钢琴基础班 发表于 2018-09-23 | 分类于 C'est La Vie | 可以直接迅雷下载~ 1-10 集 http://video.sd2007.com.cn/0e389850a1df4231a5324fc964c5886c/2d6d9b72cb76426e92de5ae1f833c0a1-5287d2089db37e62345.mp4 htt ... 阅读全文 »
Python 数据挖掘分析 - 函数面向对象 发表于 2018-09-22 | 分类于 计算机 , Python | 函数 func(arg1, ..., argN=1): expression return None return 是 return None 的简写, 函数可以没有 return 语句.空函数体要使用 pass 超过一个返回值, 使用 tuple 实现: return x,y,z ... 阅读全文 »
Python 数据挖掘分析 - 运算符语句 发表于 2018-09-20 | 分类于 计算机 , Python | SpyderSpyder 中将代码使用 #%% 分块, 可以以块为单位执行. 执行之后, 会有 Variable Explorer 显示脚本执行过程中的所有变量及值列表. 设定当前工作路径的功能, 协助切换路径, 方便引入文件. Python 运算符数值(布尔,虚数)类型: + - * / **幂 ... 阅读全文 »
Python 数据挖掘分析 - 基础 发表于 2018-09-19 | 分类于 计算机 , Python | Anaconda安装好后要检查环境变量(/anaconda/bin:$HOME/.anaconda/bin) Python 编程小技巧12# -*- coding: UTF-8 -*-# 上面注释允许本文件以 UTF8 编码. 空行有时必须, 用于标记循环语句结束.使用 \ 能将两行以一行执行(和 ... 阅读全文 »
Mysqldump 导出数据报错 unknown table 'column_statistics' in information_schema 发表于 2018-09-12 | 分类于 计算机 , MySQL | mysqldump: Couldn’t execute ‘SELECT COLUMN_NAME,JSON_EXTRACT(HISTOGRAM, ‘$.”number-of-buckets-specified”‘)FROM information_schema.COLUMN_STATISTICS WH ... 阅读全文 »