摘要: 1.tmp目录文件超过30天会发生什么? 被删除【30天内没有被访问】 2.修改用户密码的sql alter user 5.MySQL常见的数据类型? boolean =》 0 1 数值类型:int float double long bigint 字符串类型:char varchar text【c 阅读全文
posted @ 2022-04-18 19:12 咸鱼QwQ 阅读(41) 评论(0) 推荐(0)
摘要: mysql语法 数据准备 create table emp ( empno numeric(4) not null, ename varchar(10), job varchar(9), mgr numeric(4), hiredate datetime, sal numeric(7, 2), co 阅读全文
posted @ 2022-04-15 19:20 咸鱼QwQ 阅读(248) 评论(0) 推荐(0)
摘要: linux模版机 1. ip 动态ip =》 静态ip 1.内网 2.学习方便 2.关闭防火墙: 1-65535 全部关闭 3.额外的安装包 1.jdk =》 卸载掉 2.mysql =》 mysql自带的额外包【安装mysql去掉就行】【superset 依赖mysql自带的额外包】 4.host 阅读全文
posted @ 2022-04-15 19:19 咸鱼QwQ 阅读(25) 评论(0) 推荐(0)
摘要: 1.什么是shell? 1.一个编程的语言 2.可以执行的文件 3.文件内容 linux 命令组成的 2.shell语法入门 入门 1.文件 xxx.sh 文件 2.第一行 #!/bin/bash 1.编写脚本 [root@liunxandshell shell]# vim hello.sh #!/ 阅读全文
posted @ 2022-04-14 18:11 咸鱼QwQ 阅读(36) 评论(0) 推荐(0)
摘要: 数理统计 1.描述统计 2. 1.描述统计 1.什么是描述统计? 描述统计描述统计 从数据中提取 变量的主要信息 2.从数据中提取 变量的主要信息 ⇒ 【指标】 统计量 统计量 1.频率与频数 2.集中趋势分析: 均值、中位数、众数、分位数 3.离散程度分析: 极差、方差、标准差 4.分布形状: 偏 阅读全文
posted @ 2022-04-14 09:57 咸鱼QwQ 阅读(344) 评论(0) 推荐(0)
摘要: 1.基本命令 9.mv + cp 1.mv 剪切 2.cp 复制 mv =》 文件个数 始终是1份 cp =》 文件个数 始终是2份 1.移动 [root@liunxandshell bigdata]# mv 1.log ../1.log [root@liunxandshell bigdata]# 阅读全文
posted @ 2022-04-13 15:34 咸鱼QwQ 阅读(52) 评论(0) 推荐(0)
摘要: 1.概述 1.为什么要使用linux? java、前端、大数据、算法 =》 app 服务器 =》 linux 2.linux概述 1.文件操作 层级式文件系统 3.linux版本: 广义: ubuntu、小红帽、CentOS、debian、等 基于linux 内核进行开发 大数据用CentOS比较多 阅读全文
posted @ 2022-04-12 17:27 咸鱼QwQ 阅读(27) 评论(0) 推荐(0)
摘要: 数据在这里RFM聚类分析_demo.xlsx 代码如下 ''' RFM模型聚类分析客户价值 业务周期:1个月 s R = dt - 最近一次投资时间【时差】 F = 投资总次数 / 用户投资时长(月) 【每个月频率】 M = 投资总金额 / 用户投资时长(月) ''' from math impor 阅读全文
posted @ 2022-04-11 21:27 咸鱼QwQ 阅读(200) 评论(0) 推荐(0)
摘要: 数据探索 1.统计量分析: 1.集中趋势的度量: 1.均值、中位数、众数 2.离散趋势的度量: 极值() 极差 标准差、方差 四分位数间距 案例data.csv文件在这 import pandas as pd if __name__ == '__main__': df = pd.read_csv(r 阅读全文
posted @ 2022-04-11 21:24 咸鱼QwQ 阅读(85) 评论(0) 推荐(0)
摘要: matplotlib库学习 1.官网 https://matplotlib.org/ 2.概述 Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in 阅读全文
posted @ 2022-04-09 21:49 咸鱼QwQ 阅读(113) 评论(0) 推荐(0)