上一页 1 2 3 4 5 6 7 8 9 ··· 36 下一页
摘要: hive ddl : https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-DropTable hive dml : https://cwiki.apache.org/conflue 阅读全文
posted @ 2022-01-05 18:49 linbo.yang 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 使用private关键字修饰的成员变量/方法 都可以被这个类的实例对象访问 ; 使用private[this]来修饰的成语变量 阅读全文
posted @ 2021-12-13 16:51 linbo.yang 阅读(77) 评论(0) 推荐(0) 编辑
摘要: https://cloud.tencent.com/developer/article/1793531 方法使用陷阱: 1.return可以省略,Scala会使用函数体的最后一行代码作为返回值 2.如果函数体只有一行代码,可以省略花括号 ; 3.返回值类型如果能够推断出来,那么(:和返回值类型)可以 阅读全文
posted @ 2021-12-12 18:21 linbo.yang 阅读(28) 评论(0) 推荐(0) 编辑
摘要: clickhouse:https://clickhouse.com/docs/zh/sql-reference/functions/bitmap-functions/#bitmapcontains 需求分析: 框选常用城市为山西,且消费性别为男或者未知的人群 ; 问题: 发现返回的人群数为0 ,预期 阅读全文
posted @ 2021-12-01 18:45 linbo.yang 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 1 SELECT 2 groupBitmapAnd(uv) 3 ,groupBitmapOr(uv) 4 ,bitmapToArray(groupBitmapAndState(uv)) 5 ,arraySort(bitmapToArray(groupBitmapAndState(uv))) 6 ,a 阅读全文
posted @ 2021-12-01 16:23 linbo.yang 阅读(157) 评论(0) 推荐(0) 编辑
摘要: """ 经验:符号常量总是优于字面常量,枚举类型是定义符号常量的最佳选择 """ from enum import Enum, unique import random @unique class Suite(Enum): """花色""" SPADE, HEART, CLUB, DIAMOND = 阅读全文
posted @ 2021-11-30 16:42 linbo.yang 阅读(83) 评论(0) 推荐(0) 编辑
摘要: *强调文本* _强调文本_ **加粗文本** __加粗文本__ ==标记文本== ~~删除文本~~ > 引用文本1 > 引用文本2 ## 列表 - 项目 * 项目 + 项目 1. 项目1 2. 项目2 3. 项目3 - [ ] 计划任务 - [x] 完成任务 ## 链接 链接: [link](htt 阅读全文
posted @ 2021-11-30 16:33 linbo.yang 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 复合饼图: 瀑布图: 旭日图: 树状图: 漏斗图: 组合框控件实现动态图标: 阅读全文
posted @ 2021-11-28 21:15 linbo.yang 阅读(734) 评论(0) 推荐(0) 编辑
摘要: pathlib.mkidr() p=pathlib.Path(__file__) print("*"*180) print(p.cwd()) print(p.cwd().joinpath("my/directory/somelog")) pathlib.Path(p.cwd().joinpath(" 阅读全文
posted @ 2021-11-23 18:18 linbo.yang 阅读(31) 评论(0) 推荐(0) 编辑
摘要: https://pythonguides.com/category/python-tutorials/python-tkinter/ from tkinter import * from tkinter.filedialog import asksaveasfile from tkinter imp 阅读全文
posted @ 2021-11-17 19:25 linbo.yang 阅读(1117) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 36 下一页