上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 407 下一页
摘要: 001、 002、 003、此时画板大小处于可调整大小的状态 。 阅读全文
posted @ 2024-03-22 22:48 小鲨鱼2018 阅读(216) 评论(0) 推荐(0)
摘要: 001、问题 locate定位文件的时候出现如下问题: locate: can not stat () `/var/lib/mlocate/mlocate.db': No such file or directory 002、原因分析; 安装locate命令后没有更新 解决方法:更新命令库,使用如下 阅读全文
posted @ 2024-03-18 11:19 小鲨鱼2018 阅读(617) 评论(0) 推荐(0)
摘要: 001、问题 安装软件 make过程中出现如下错误: /usr/bin/ld: cannot find -lgsl/usr/bin/ld: cannot find -lopenblas 002、问题分析 出现类似的这种报错,一般是找不到对应的库文件,比如上面的提示对应如下的两个库文件: libgsl 阅读全文
posted @ 2024-03-18 11:16 小鲨鱼2018 阅读(541) 评论(0) 推荐(0)
摘要: 001、基础绘图 plot(1:10) legend('topleft', ## legend函数默认会带有一个框线 c("Presence", "Absence"), col= "royalblue1", pch = 15, cex = 1, text.font = 2, inset= 0.02) 阅读全文
posted @ 2024-03-17 12:04 小鲨鱼2018 阅读(447) 评论(0) 推荐(0)
摘要: 001、 [root@pc1 test1]# ls a.txt [root@pc1 test1]# cat a.txt 5 8 2 7 3 [root@pc1 test1]# awk '{if(NR == 1) {idx = NR; value = $1}; if($1 > value) {idx 阅读全文
posted @ 2024-03-16 11:57 小鲨鱼2018 阅读(33) 评论(0) 推荐(0)
摘要: 001、基础绘图 library(ggplot2)#导入ggplot包 ggplot(data = mtcars, aes(x = wt, y = mpg, colour = factor(cyl))) + geom_point() + theme_bw() ## 基础绘图 002、设置y轴刻度标签 阅读全文
posted @ 2024-03-08 19:22 小鲨鱼2018 阅读(324) 评论(0) 推荐(0)
摘要: 001、基础绘图 library(ggplot2)#导入ggplot包 ggplot(data = mtcars, aes(x = wt, y = mpg, colour = factor(cyl))) + geom_point() + theme_bw() ## 基础绘图 002、设置x轴名称与框 阅读全文
posted @ 2024-03-08 18:50 小鲨鱼2018 阅读(1032) 评论(0) 推荐(0)
摘要: 001、基础绘图 library(ggplot2)#导入ggplot包 ggplot(data = mtcars, aes(x = wt, y = mpg, colour = factor(cyl))) + geom_point() + theme_bw() ## 基础绘图 002、调整x轴上刻度文 阅读全文
posted @ 2024-03-08 18:35 小鲨鱼2018 阅读(92) 评论(0) 推荐(0)
摘要: 001、基础绘图 library(ggplot2) ## 加载包 ggplot(data = mtcars, aes(x = wt, y = mpg, colour = factor(cyl))) + geom_point() ## 绘制散点图 002、增加四边框线 library(ggplot2) 阅读全文
posted @ 2024-03-08 18:13 小鲨鱼2018 阅读(1086) 评论(0) 推荐(0)
摘要: 001、 # -*- coding: utf-8 -*-的作用是告诉python编码,默认的是ASCII编码,使用中文注释的情况下会报错,而增加# -*- coding: utf-8 -*-则程序可以正常执行 [root@pc1 test1]# ls ## 下面是两个测试程序 test01.py t 阅读全文
posted @ 2024-03-08 17:21 小鲨鱼2018 阅读(899) 评论(0) 推荐(0)
上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 407 下一页