上一页 1 ··· 187 188 189 190 191 192 193 194 195 ··· 324 下一页
摘要: FTP的命令行格式为:ftp -v -d -i -n -g [主机IP或者主机名],其中 -v显示远程服务器的所有响应信息; -n限制ftp的自动登录,即不使用; .n etrc文件; -d使用调试方式; -g取消全局文件名。 ftp使用的内部命令如下(中括号表示可选项): 1.!... 阅读全文
posted @ 2014-06-18 12:50 emanlee 阅读(30509) 评论(1) 推荐(2) 编辑
摘要: cat("the total number is:",3+5,"\n")print(x, ...)?print?cat?format ?write 阅读全文
posted @ 2014-06-12 22:16 emanlee 阅读(12587) 评论(0) 推荐(0) 编辑
摘要: sessionInfo() 查看R中载入的包和版本 writeLines(capture.output(sessionInfo()), "sessionInfo.txt") sink("sessionInfo.txt") sessionInfo() sink() data.frame 动态确定列名称 阅读全文
posted @ 2014-06-07 15:42 emanlee 阅读(2276) 评论(0) 推荐(0) 编辑
摘要: test for data typeis.numeric(), is.character(), is.vector(), is.matrix(), is.data.frame()convert it as.numeric(), as.character(), as.vector(), as.m... 阅读全文
posted @ 2014-06-07 10:20 emanlee 阅读(41992) 评论(1) 推荐(1) 编辑
摘要: 几条建议:(1)客户端连接202202 暂时没有开启 WEB,不会有老师在202上录入成绩。建议大家都用202 连接客户端。这样一旦出现不能登录的问题,可以重启202服务器。参考:修改客户端连接的服务器IP地址(2)建议用群共享中的最新版的客户端:jwgl20140603.exe 阅读全文
posted @ 2014-06-06 10:07 emanlee 阅读(279) 评论(0) 推荐(0) 编辑
摘要: GMT(Greenwich Mean Time) 代表格林尼治标准时间而CST却同时可以代表如下 4 个不同的时区: Central Standard Time (USA) UT-6:00 Central Standard Time (Australia) UT+9:30 China Standar... 阅读全文
posted @ 2014-06-05 22:13 emanlee 阅读(268) 评论(0) 推荐(0) 编辑
摘要: import subprocessoutput =Popen(["mycmd","myarg"], stdout=PIPE).communicate()[0]import subprocessp = subprocess.Popen(['ls','-a'], stdout=subprocess.PI... 阅读全文
posted @ 2014-06-01 17:04 emanlee 阅读(2870) 评论(0) 推荐(0) 编辑
摘要: Python提供的基本数据类型主要有:布尔类型、整型、浮点型、字符串、列表、元组、集合、字典、日期等等函数 描述 type(x) x的数据类型 int(x [,base ]) 将x转换为一个整数 long(x [,base ]) 将x转换为一个长整数 float(x ) 将x转换到一个浮点数 ... 阅读全文
posted @ 2014-05-31 11:38 emanlee 阅读(605) 评论(0) 推荐(0) 编辑
摘要: 查找匹配行,输出该行并输出下面的一行 grep: grep -A 1 'keyword' file ### has bug awk:awk '$0~/keyword/{print $0;getline;print $0;}' file 阅读全文
posted @ 2014-05-27 22:25 emanlee 阅读(3978) 评论(0) 推荐(0) 编辑
摘要: wget -r -p -k -np http://源目录 ./本地目标目录 阅读全文
posted @ 2014-05-27 09:59 emanlee 阅读(1332) 评论(0) 推荐(0) 编辑
上一页 1 ··· 187 188 189 190 191 192 193 194 195 ··· 324 下一页