批量执行检查脚本: #!/bin/bash file_name="$1" if [ -z "$file_name" ];then echo "Pls input file path" exit 1 fi cat "$file_name"| while read line do hadoop fsck ...
分类:
其他好文 时间:
2020-06-24 17:58:36
阅读次数:
56
wget https://ftp.gnu.org/gnu/make/make-4.2.tar.gz tar -zxf make-4.2.tar.gz cd make-4.2 ./configure --prefix=$HOME/local make make install 可以在 ~/.bash_ ...
分类:
系统相关 时间:
2020-06-22 14:47:58
阅读次数:
64
遍历mac系统访达文件时候要注意了,每个文件夹会多出来一个隐藏文件.DS_Store,是用来储存文件夹配置信息的 import os a,*b = os.walk(root_path) # a--> (root_path, children dirnames, children files) fil ...
分类:
系统相关 时间:
2020-06-20 21:07:00
阅读次数:
75
1.读取 # 1.读取数据集 def read_dataset(): file_path = r'D:\SMSSpamCollection.txt' sms = open(file_path, encoding='utf-8') sms_data = [] sms_label = [] csv_re ...
分类:
其他好文 时间:
2020-06-16 12:50:49
阅读次数:
51
一些简单的编程规范 效率 1、函数 为什么要函数? 有一些重复的代码,如果每次都写一遍,代码量大、写的过程麻烦、修改麻烦 常用的代码封装,用的时候直接调用,不需再写一遍 不能为了用函数而用函数 函数的使用场景: 常用的代码:文件读取,压缩 def read_file( file_path, use_ ...
分类:
其他好文 时间:
2020-06-11 13:14:44
阅读次数:
71
dminit 是 DM 数据库初始化工具。在安装 DM 的过程中,用户可以选择是否创建初始数据库。如果当时没有创建,那么在安装完成之后,可以利用创建数据库工具 dminit 来创建。
分类:
数据库 时间:
2020-06-06 23:11:12
阅读次数:
104
1.读取 def read_dataset(): file_path = r'C:\Users\D。\SMSSpamCollection' sms = open(file_path, encoding='utf-8') sms_data = [] sms_label = [] csv_reader ...
分类:
其他好文 时间:
2020-05-27 22:04:37
阅读次数:
97
import pandas as pd import warnings warnings.filterwarnings("ignore") import time from multiprocessing import Process def node(): #获取节点数据 global_id=[] ...
分类:
系统相关 时间:
2020-05-26 18:12:38
阅读次数:
86
#设置环境路径 file_path=os.path.dirname(os.path.abspath(__file__))sys.path.append(file_path) #显示当前文件的绝对路径,含文件名。 print(os.path.abspath(__file__))print(sys.ar ...
分类:
其他好文 时间:
2020-05-24 09:51:08
阅读次数:
59
1.读取 file_path=r'D:\PycharmProjects\data\SMSSpamCollection' sms=open(file_path,'r',encoding='utf-8') sms_data=[] sms_label=[] csv_reader=csv.reader(sm ...
分类:
其他好文 时间:
2020-05-23 20:30:03
阅读次数:
87