上一页 1 2 3 4 5 6 7 8 ··· 44 下一页
摘要: 表堆叠主要是两个DataFrame进行数据合并 #!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' import pandas as pd from sq 阅读全文
posted @ 2021-03-03 19:32 我当道士那儿些年 阅读(101) 评论(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 我当道士那儿些年 阅读(89) 评论(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 我当道士那儿些年 阅读(84) 评论(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 我当道士那儿些年 阅读(55) 评论(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 我当道士那儿些年 阅读(2259) 评论(0) 推荐(0) 编辑
摘要: 常用数据预处理方法: 采样 拆分 过滤 列选择 空值处理 合并列 合并行 元数据编辑 Join 行选择 去除重复值 排序 增加序列号 聚合 分列 派生列 行转列 列转行 阅读全文
posted @ 2020-12-21 16:26 我当道士那儿些年 阅读(65) 评论(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 我当道士那儿些年 阅读(720) 评论(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 我当道士那儿些年 阅读(2363) 评论(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 我当道士那儿些年 阅读(308) 评论(0) 推荐(1) 编辑
摘要: 1. 先说需求 有一批医疗数据,需要搭建搜索引擎数据库,按照之前的管理,我优先选择了python的whoosh,毕竟对自己熟悉的东西会最先使用 同时,对ES不是特别了解,用whoosh搭建了数据库 问题: 由于数据有几个G,数据量巨大,导致whoosh在用的时候,内存溢出,MemoryError。故 阅读全文
posted @ 2020-09-08 10:37 我当道士那儿些年 阅读(1092) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 44 下一页