上一页 1 ··· 71 72 73 74 75 76 77 78 79 ··· 407 下一页
摘要: 001、测试目录及文件 (base) [root@pc1 test01]# ls a.txt b.txt c.txt (base) [root@pc1 test01]# pwd /home/test/test01 002、同时复制a.txt 和 b.txt 到/home/test/test02目录中 阅读全文
posted @ 2023-11-25 12:05 小鲨鱼2018 阅读(657) 评论(0) 推荐(0)
摘要: 001、测试数据及绘图 x <- c("B","A","D","C","E") ## 测试数据顺序 y <- c(5,6,7,8,9) df <- data.frame(x = x , y = y) df library("ggplot2") ggplot(data=df,aes(x=x,y=y)) 阅读全文
posted @ 2023-11-23 22:57 小鲨鱼2018 阅读(522) 评论(0) 推荐(0)
摘要: 001、基础绘图 library(ggplot2) p <- ggplot(faithful, aes(x = eruptions, y = waiting)) + geom_point() p 02、清空x轴title p + theme(axis.title.x =element_blank() 阅读全文
posted @ 2023-11-23 22:48 小鲨鱼2018 阅读(244) 评论(0) 推荐(0)
摘要: 001、基础绘图 library(ggplot2) p <- ggplot(faithful, aes(x = eruptions, y = waiting)) + geom_point() p ## 基础绘图 02、调整刻度线标签的长度 p + theme(axis.ticks.length = 阅读全文
posted @ 2023-11-23 22:44 小鲨鱼2018 阅读(123) 评论(0) 推荐(0)
摘要: 001、问题如下:R语言控制台一直出现 + 号该怎么处理 002、解决方法 按 ESC键。 阅读全文
posted @ 2023-11-23 11:39 小鲨鱼2018 阅读(2029) 评论(0) 推荐(0)
摘要: 001、基础绘图 library(ggplot2) p <- ggplot(faithful, aes(x = eruptions, y = waiting)) + geom_point() p ## 基础绘图 002、调整轴标签与绘图区域的间距 a、 p + theme(axis.text.x=e 阅读全文
posted @ 2023-11-22 21:09 小鲨鱼2018 阅读(201) 评论(0) 推荐(0)
摘要: 001、 如何在word方框中打√符号?百度知道1、首先在电脑中打开word,需要在方框内打√符号,先选中方框,按delete键删除方框。2、然后在打开的操作主页面中,点击菜单栏“插入”,如下图所示。3、接着在打开的下拉菜单中,点击右侧“符号—其他符号”。4、然后在打开的窗口中,字体选择“Wangd 阅读全文
posted @ 2023-11-21 10:28 小鲨鱼2018 阅读(5306) 评论(0) 推荐(0)
摘要: 001、方法1 (base) [root@pc1 test]# ls a.txt (base) [root@pc1 test]# cat a.txt ## 测试文本 aa aa aa bb bb cc cc cc cc ## 利用数组记录字符串重复的次数,借助printf格式化输出 (base) [ 阅读全文
posted @ 2023-11-20 20:37 小鲨鱼2018 阅读(88) 评论(0) 推荐(0)
摘要: 001、make报错如下:make[1]: *** [all-recursive] Error 1 002、解决方法:configure的时候加上:--with-included-apr (不知道为啥?) ./configure --with-included-apr make测试: make -j 阅读全文
posted @ 2023-11-20 15:51 小鲨鱼2018 阅读(2525) 评论(0) 推荐(0)
摘要: 001、make编译报错如下:fsm.h:24:37: fatal error: glib.h: No such file or directory 002、查找该文件 (base) [root@pc1 exonerate-2.4.0]# find / -name "glib.h" ## 存在该文件 阅读全文
posted @ 2023-11-20 14:31 小鲨鱼2018 阅读(337) 评论(0) 推荐(0)
上一页 1 ··· 71 72 73 74 75 76 77 78 79 ··· 407 下一页