会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小鲨鱼2018
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
55
56
57
58
59
60
61
62
63
···
407
下一页
2024年3月22日
Adobe Illustrator中调整画板大小
摘要: 001、 002、 003、此时画板大小处于可调整大小的状态 。
阅读全文
posted @ 2024-03-22 22:48 小鲨鱼2018
阅读(216)
评论(0)
推荐(0)
2024年3月18日
locate: can not stat () `/var/lib/mlocate/mlocate.db': No such file or directory
摘要: 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)
/usr/bin/ld: cannot find -lopenblas
摘要: 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)
2024年3月17日
R语言中绘图 设置图例中隐藏图例的框线
摘要: 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)
2024年3月16日
linux 中输出一列数据中最大值的行号
摘要: 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)
2024年3月8日
R语言中绘图 调整y轴刻度标签到y轴的距离
摘要: 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)
ggplot2中绘图设置x轴、y轴名称距离框线的距离
摘要: 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)
R语言中ggplot绘图设置绘图标签文字到框线的距离
摘要: 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)
R语言中ggplot绘图绘制L型图形,并设置框线的粗细
摘要: 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)
python 脚本中 # -*- coding: utf-8 -*-的作用
摘要: 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
下一页
公告