上一页 1 2 3 4 5 6 7 8 ··· 44 下一页
摘要: #!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' import pandas as pd from sklearn.model_selection im 阅读全文
posted @ 2021-03-03 19:45 我当道士那儿些年 阅读(104) 评论(0) 推荐(0)
摘要: 表堆叠主要是两个DataFrame进行数据合并 #!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' import pandas as pd from sq 阅读全文
posted @ 2021-03-03 19:32 我当道士那儿些年 阅读(110) 评论(0) 推荐(0)
摘要: 增加新的序列 #!/usr/bin/env python# -*- coding:utf-8 -*-# <editable>def execute(): # <editable> inputs = {"table": 'test', } params = { "left_columns": "id, 阅读全文
posted @ 2021-03-03 19:29 我当道士那儿些年 阅读(104) 评论(0) 推荐(0)
摘要: #!/usr/bin/env python# -*- coding:utf-8 -*-# <editable>def execute(): # <editable> ''' 载入模块 ''' import sqlalchemy # import db_utils import pandas as p 阅读全文
posted @ 2021-03-03 19:25 我当道士那儿些年 阅读(98) 评论(0) 推荐(0)
摘要: 表连接,主要表达两个DataFrame数据进行拼接 #!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' import pandas as pd from 阅读全文
posted @ 2021-03-03 19:23 我当道士那儿些年 阅读(66) 评论(0) 推荐(0)
摘要: 最近公司给了我一个项目,让我把卫星的所有数据全部下载下来。 命令是: wget -m -np -e robots=off https://services.swpc.noaa.gov/experimental/ --no-check-certificate 模板 wget -m -np -e rob 阅读全文
posted @ 2021-02-18 10:10 我当道士那儿些年 阅读(2406) 评论(0) 推荐(0)
摘要: 常用数据预处理方法: 采样 拆分 过滤 列选择 空值处理 合并列 合并行 元数据编辑 Join 行选择 去除重复值 排序 增加序列号 聚合 分列 派生列 行转列 列转行 阅读全文
posted @ 2020-12-21 16:26 我当道士那儿些年 阅读(76) 评论(0) 推荐(0)
摘要: CREATE TABLE `blade_log_error` ( `id` bigint(64) NOT NULL COMMENT '编号', `tenant_id` varchar(12) DEFAULT '000000' COMMENT '租户ID', `service_id` varchar( 阅读全文
posted @ 2020-10-21 11:24 我当道士那儿些年 阅读(788) 评论(0) 推荐(0)
摘要: 1. test分支合并到master,合并分支代码 a. 创建分支 git branch test b. 切换分支 git checkout test c. 需求:把test分支合并到master合并代码步骤 1). 修改test分支代码 2).提交test分支代码到test分支 git add . 阅读全文
posted @ 2020-09-26 19:30 我当道士那儿些年 阅读(2776) 评论(0) 推荐(0)
摘要: 我觉得这个题非常典型,所以 3.返回下表中所有同学语文成绩最低的1次考试成绩 chinese english math name test 75 69 36 张三 一 68 85 87 李四 一 54 42 59 王五 一 55 57 63 李四 二 59 35 92 王五 二 45 63 92 王 阅读全文
posted @ 2020-09-14 11:14 我当道士那儿些年 阅读(320) 评论(0) 推荐(1)
上一页 1 2 3 4 5 6 7 8 ··· 44 下一页