-help:查看帮助 hadoop fs -help rm -rm [-f] [-r|-R] [-skipTrash] <src> ... : Delete all files that match the specified file pattern. Equivalent to the Unix ...
分类:
其他好文 时间:
2020-02-21 14:29:07
阅读次数:
80
-help:查看帮助 hadoop fs -help rm -rm [-f] [-r|-R] [-skipTrash] <src> ... : Delete all files that match the specified file pattern. Equivalent to the Unix ...
分类:
其他好文 时间:
2020-02-21 12:50:31
阅读次数:
57
linux命令的语法 命令 可选参数 你要操作的对象 修改linux支持文件的命令 export LC_ALL=zh_CN.UTF-8 #设置linux一个全局的中文变量 增 1.创建一个普通文本文件 语法是 touch 文件名 [root@bogon tmp]# touch music.txt?2 ...
分类:
系统相关 时间:
2020-02-20 23:50:54
阅读次数:
105
官方网站:https://docs.python.org/3/library/functions.html?highlight=built 1 函数的程序 2 3 4 5 print( all([1,-5,3]) ) #如果列表全部为真则返回true 6 7 8 9 print( any([]) ) ...
分类:
其他好文 时间:
2020-02-20 23:48:52
阅读次数:
81
一.查看特征数据类型,有没有文本型变量需要处理 train_data.info() train_data.describe(include="all",percentiles=[0.5]).T.round(2) 二.查看缺失值数量或占比 三.查看标签分布 # 查看标签分布 df['label'].v ...
分类:
其他好文 时间:
2020-02-20 22:10:48
阅读次数:
52
像我这种根本不理解并查集内涵的人做这种题就很难受。。。一道题卡一天 ...
分类:
其他好文 时间:
2020-02-20 22:09:14
阅读次数:
62
word-break 该属性决定文本内容超出容器时,浏览器是否自动插入换行符。 属性值: normal:默认换行规则——英文以词为单位换行,连续字符不换行,直接溢出父元素 break-all:无视单词,强制在父元素边缘位置截断(最省空间,看起来最整齐,但单词可能被从中劈开)。另外连续的标点符号不会换 ...
分类:
Web程序 时间:
2020-02-20 22:04:30
阅读次数:
87
a = {1,2,3,4,5,6,7,8,"aa","2"} b = {2,3,4,5,6,7,8,9,99,7,6,6} v = a.intersection(b) 求交集 v = a.union(b) 求并集 a.update(b) 也是并集,不用变量 a.add() 只能更新一个值 v = a ...
分类:
编程语言 时间:
2020-02-20 13:30:20
阅读次数:
103
1、 看到伴侣流泪,自己也觉得不舒服;看到伴侣皱眉,自己心里也烦躁,情绪仿佛会“传染”,而这种“情绪传染”就是情绪共情(emotional empathy)。而对伴侣的推理和理解,更多是认知共情(cognitive empathy)在起作用。 心理学家可能会建议:多考虑对方的考虑,但可以少感受一点对 ...
分类:
其他好文 时间:
2020-02-20 13:08:53
阅读次数:
66
1 """ 2 Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which giv ...
分类:
其他好文 时间:
2020-02-20 13:06:07
阅读次数:
65