上一页 1 ··· 333 334 335 336 337 338 339 340 341 ··· 375 下一页
摘要: 1、 p<-ggplot(mtcars,aes(mpg,hp,colour=factor(cyl)))+geom_point() p 2、调整x轴 p+theme(axis.line.x=element_line(linetype=1,color="black",size=3)) 3、调整x轴刻度线 阅读全文
posted @ 2021-01-10 12:38 小鲨鱼2018 阅读(14596) 评论(2) 推荐(2) 编辑
摘要: 1、 p<-ggplot(mtcars,aes(mpg,hp,colour=factor(cyl)))+geom_point() p 2、去除图例 p + theme(legend.position = 'none') 阅读全文
posted @ 2021-01-10 12:22 小鲨鱼2018 阅读(13563) 评论(0) 推荐(0) 编辑
摘要: 1、 p<-ggplot(mtcars,aes(mpg,hp,colour=factor(cyl)))+geom_point() p 2、去除背景色 p + theme_bw() 3、去除网格线 p + theme_bw() + theme(panel.grid=element_blank()) 阅读全文
posted @ 2021-01-10 12:19 小鲨鱼2018 阅读(26482) 评论(0) 推荐(1) 编辑
摘要: 1、 #include <stdio.h> #define NUMBER 7 int main(void) { int i, a[NUMBER]; for (i = 0; i < NUMBER; i ++) { printf("NO.[%d] = ", i + 1); scanf("%d", &a[ 阅读全文
posted @ 2021-01-09 13:44 小鲨鱼2018 阅读(140) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main(void) { int a[7] = {45,32,86,56,24,98,85}; int min, max; min = a[0]; max = a[0]; int i; for (i = 0; i < 7; i ++) { if (a[i 阅读全文
posted @ 2021-01-09 12:55 小鲨鱼2018 阅读(6520) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #define NUMBER 5 int main(void) { int i; int sum = 0; int a[NUMBER]; puts("please input the scores."); for (i = 0; i < NUMBER; i 阅读全文
posted @ 2021-01-09 12:36 小鲨鱼2018 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> int main(void) { int a[7] = {100,200,300,400,500,600,700}; int i; for (i = 0; i < 3; i ++) { int temp = a[i]; a[i] = a[6 - i]; a 阅读全文
posted @ 2021-01-08 23:33 小鲨鱼2018 阅读(1412) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main(void) { int a[5]; int i; for (i = 0; i < 5; i ++) { printf("a[%d] : ", i); scanf("%d", &a[i]); } puts("\n "); for (i = 0; 阅读全文
posted @ 2021-01-08 22:46 小鲨鱼2018 阅读(3820) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main(void) { int a[4] = {22,11,99,77}; int b[4]; int i; for (i = 0; i < 4; i ++) b[i] = a[i]; puts(" a b"); for (i = 0; i < 4; 阅读全文
posted @ 2021-01-08 22:35 小鲨鱼2018 阅读(1144) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> int main(void) { int v[5]; v[0] = 1; v[1] = 2; v[2] = 3; v[3] = 4; v[4] = 5; printf("v[0] = %d\n", v[0]); printf("v[1] = %d\n", 阅读全文
posted @ 2021-01-08 20:38 小鲨鱼2018 阅读(521) 评论(0) 推荐(0) 编辑
上一页 1 ··· 333 334 335 336 337 338 339 340 341 ··· 375 下一页