上一页 1 ··· 187 188 189 190 191 192 193 194 195 ··· 367 下一页
摘要: 1、当前系统 lsb_release -a ubuntu 22.04. 2、进入/etc/netplan/目录,列出该目录下的内容 cd /etc/netplan/ ls 3、利用vim编辑器打开xxx.yaml文件,进行编辑: vim 01-network-manager-all.yaml 内容如 阅读全文
posted @ 2022-05-19 10:01 小鲨鱼2018 阅读(57627) 评论(0) 推荐(3) 编辑
摘要: 1、ubuntu 虚拟机无法使用putty连接 2、检查是否安装了ssh服务 ps -e | grep ssh 说明没有安装ssh服务。 3、安装ssh服务 sudo apt-get install openssh-server 说明安装正常。 4、检查ssh服务 ps -e | grep ssh 阅读全文
posted @ 2022-05-18 23:28 小鲨鱼2018 阅读(1243) 评论(0) 推荐(0) 编辑
摘要: 1、确保网络连接正常,可以用ping测试 ping -c 3 www.baidu.com 说明网络连接没有问题。 2、更新软件仓库 apt update 3、执行如下命令 sudo apt-get autoremove open-vm-tools sudo apt-get install open- 阅读全文
posted @ 2022-05-18 23:03 小鲨鱼2018 阅读(1668) 评论(0) 推荐(0) 编辑
摘要: 001、par(mgp)选项的作用是调整坐标轴标签、刻度标签、刻度框线距离绘图区域的距离。 par(mfrow = c(2, 2)) par(mgp = c(3, 2, 0)) plot(1:10, main = "3 2 0", cex.main = 3) box(which = "figure" 阅读全文
posted @ 2022-05-18 13:26 小鲨鱼2018 阅读(1640) 评论(0) 推荐(0) 编辑
摘要: 001、par(mar)选项的作用是调整绘图区域距离外围框线的距离。作用和par(mai)一样, 可能只是单位不一样. par(mfrow = c(2, 2)) par(mar = c(1, 1, 1, 1)) plot(1:10, main = "mar = 1", cex.main = 3) b 阅读全文
posted @ 2022-05-18 13:15 小鲨鱼2018 阅读(7450) 评论(0) 推荐(0) 编辑
摘要: 001、par(oma)选项的作用是调整外框线距离绘图边界的距离。 par(oma = c(1, 1, 1, 1)) plot(1:10, main = "oma = 1", cex.main = 3) box(which = "figure", lwd = 5) box(which = "plot 阅读全文
posted @ 2022-05-18 13:04 小鲨鱼2018 阅读(1339) 评论(0) 推荐(1) 编辑
摘要: 001、mai的作用是调整绘图区域与外围框线的距离。 par(mfrow = c(2, 2)) par(mai = c(0.5,0.5,0.5,0.5)) plot(1:10, main = "mai = 0.5", cex.main = 3) box(which = "figure", lwd = 阅读全文
posted @ 2022-05-18 12:57 小鲨鱼2018 阅读(1854) 评论(0) 推荐(0) 编辑
摘要: 1、 plot(0:10, 0:10, pch = 16, col = "red", xaxs = "i", yaxs = "i") abline(h = 5, lwd = 5) ## 高度 2、 plot(0:10, 0:10, pch = 16, col = "red", xaxs = "i", 阅读全文
posted @ 2022-05-17 23:54 小鲨鱼2018 阅读(636) 评论(0) 推荐(0) 编辑
摘要: 001 完整代码 dat <- read.table("result.fst", header = T) head(dat) chrlen <- vector() for (i in unique(dat$CHR)) { temp <- dat[dat$CHR == i, ] temp <- tem 阅读全文
posted @ 2022-05-17 13:59 小鲨鱼2018 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 1、 win + i 打开设置, 点击轻松使用 2、点击左下角键盘 3、将屏幕截图快捷方式点为开 阅读全文
posted @ 2022-05-17 12:47 小鲨鱼2018 阅读(1084) 评论(0) 推荐(0) 编辑
上一页 1 ··· 187 188 189 190 191 192 193 194 195 ··· 367 下一页