这样的数据用R语言怎么绘制成直方图,谢谢!

Sequence_sizeLength_distribution40024324500154126001123370092088007882900703910006674... Sequence_size Length_distribution
400 24324
500 15412
600 11233
700 9208
800 7882
900 7039
1000 6674
1100 6352
1200 6166
1300 5816
1400 5880
1500 5781
1600 5787
1700 5457
1800 4994
1900 4873
2000 4429
2100 4035
2200 3581
2300 3294
2400 2916
2500 2782
2600 2564
2700 2439
2800 2262
2900 2029
3000 1785
>=3000 17842
展开
 我来答
博君一笑II
2015-03-05 · TA获得超过1017个赞
知道小有建树答主
回答量:99
采纳率:0%
帮助的人:38.6万
展开全部
储存原始数据后,将其在R中命名为test,运行以下数据就能得到你要的条形图了

tp <- barplot(test$Length_distribution, names.arg=test$Sequence_size, las =2, ylim=c(0,30000),col="black")
text(tp, test$Length_distribution, labels =test$Length_distribution,pos=4,srt=90,offset=0)
超人影视娱乐
高粉答主

2015-09-10 · 闲来无事的影评人-关注我把
超人影视娱乐
采纳数:7757 获赞数:60597

向TA提问 私信TA
展开全部
这样的数据用R语言怎么绘制成直方图代码如下:
turboc 直方图

#include <math.h>
#include <conio.h>
#include <stdio.h>
#include <stdlib.h>
#include <graphics.h>

int main()
{
int GraphDriver;
int GraphMode;
int i, x, y;
char buffer[5];
int data[]={7,3,12,6,9,5,8,11};

GraphDriver = DETECT;
initgraph(&GraphDriver, &GraphMode, "");

setcolor(15);
moveto(635, 461);
lineto(20, 461);
lineto(20, 20);

setcolor(15);
for (i = 1 ; i < 13; i++)
{
itoa(i, buffer, 10);
outtextxy(20 - textwidth(buffer), 456 - i * 36, buffer);
moveto(20, 460 - i * 36);
lineto(23, 460 - i * 36);
}
setfillstyle(SOLID_FILL, 1);
for (i = 0 ; i < 8; i++)
{
moveto(i * 50 + 49, 461);
lineto(i * 50 + 49, 465);
outtextxy(i * 50 + 51, 463, itoa(i + 1, buffer, 10));
bar(i * 50 + 35, 460 - data[i] * 36, i * 50 + 65, 460);
}

getch();

closegraph();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式