上一页 1 ··· 145 146 147 148 149 150 151 152 153 ··· 341 下一页
摘要: library("packagename",quietly=TRUE) 阅读全文
posted @ 2020-11-13 17:21 emanlee 阅读(253) 评论(0) 推荐(0)
摘要: From https://blog.csdn.net/u011808596/article/details/80974250 # 先安装各个包 futile.logger - R中类似log4j的日志记录包. 官网:https://github.com/zatonovo/futile.logger 阅读全文
posted @ 2020-11-13 08:14 emanlee 阅读(4008) 评论(0) 推荐(0)
摘要: var haha=document.getElementById("Conds").value;haha=haha.replace(/<br>/g,"\n").replace(new RegExp(/( )/g),"");document.getElementById("Conds").value= 阅读全文
posted @ 2020-11-11 20:32 emanlee 阅读(389) 评论(0) 推荐(0)
摘要: 引用jar包了 import org.apache.log4j.Logger; 但是运行就报这个错 把包复制到web-inf,lib 中 阅读全文
posted @ 2020-11-10 20:18 emanlee 阅读(1571) 评论(0) 推荐(0)
摘要: R语言画图,参考: http://blog.sina.com.cn/s/blog_1704ff73a0102wtx4.html https://www.yuque.com/shenweiyan/cookbook/nvi8vg https://www.jianshu.com/p/166551f66b4 阅读全文
posted @ 2020-11-08 23:32 emanlee 阅读(448) 评论(0) 推荐(0)
摘要: Check out the JRI/rJava project which provides a Java/R interface. After you download the package, see the examples directory. Another option is to us 阅读全文
posted @ 2020-11-08 23:22 emanlee 阅读(341) 评论(0) 推荐(0)
摘要: 1、查看当前的系统时间:# date 2、 查看当前时区$ timedatectl status 3、修改时间# date -s "2019-06-25 20:13:00"4、修改时区# timedatectl set-timezone Asia/Shanghai 阅读全文
posted @ 2020-11-08 16:56 emanlee 阅读(759) 评论(0) 推荐(0)
摘要: 用法:eval command-line原理:eval主要用在对参数的特殊处理上面的,一般的命令行,shell处理参数就只执行一遍,像转义和变量转变;但加上eval后就可以对参数多进行一遍处理;一个eval只能使shell对参数多一次处理,因此有几个eval就可以多加几次,即eval eval co 阅读全文
posted @ 2020-11-07 16:00 emanlee 阅读(1154) 评论(0) 推荐(0)
摘要: shell脚本运行时传入参数$1 $2 等,awk 也可以使用参数 $1 $2 等, $1 $2 等会混淆。 解决方法: 脚本中awk用到自身的内置参数时,采用\进行转义 filename=$1 cat $filename | awk -F"," '{ \$1=""; print $0 }' REF 阅读全文
posted @ 2020-11-07 11:22 emanlee 阅读(1778) 评论(0) 推荐(0)
摘要: #!/bin/bash echo "Shell 传递参数实例!"; echo "执行的文件名:$0"; echo "第一个参数为:$1"; echo "第二个参数为:$2"; echo "第三个参数为:$3";echo "参数个数为:$#"; 阅读全文
posted @ 2020-11-07 11:16 emanlee 阅读(371) 评论(0) 推荐(0)
上一页 1 ··· 145 146 147 148 149 150 151 152 153 ··· 341 下一页