使用R绘制一组数字

时间:2012-11-11 16:27:15

标签: r plot statistics

我有一组数字:

170,295,200,165,140,190,195,142,138,148,110,140,103,176,125,126,204,196,98,123,124
152,177,168,175,186,140,147,174,155,195

我想用R在直方图中绘制它们。我是否需要将它们全部放入数组或其他内容?我试过了X = a[170,...],但这没效果。

2 个答案:

答案 0 :(得分:3)

这应该足够了

x <- c(170,295,200,165,140,190,195,142,138,148,110,140,103,
       176,125,126,204,196,98,123,124,152,177,168,175,186,140,
       147,174,155,195) 

hist(x)

enter image description here

请注意,我使用c()函数连接一个向量中的所有数字,然后我只使用hist()函数生成直方图

答案 1 :(得分:2)

您希望将各个元素(数字)组合或连接到一个向量中。使用c()功能执行此操作。 E.g。

dat <- c(170,295,200,165,140,190,195,142,138,148,110,140,103,176,125,126,204,
         196,98,123,124,152,177,168,175,186,140,147,174,155,195)
hist(dat)

产生

enter image description here