' X'在尝试创建Leaf和Stem显示时,R中必须是数字ERROR

时间:2016-02-08 04:23:13

标签: r plot stem

我是R的初学者,我只是想读取包含值的文本文件并创建一个词干显示,但我一直收到错误。这是我的代码:

setwd("C:/Users/Michael/Desktop/ch1-ch9 data/CH01")
gravity=read.table("C:ex01-11.txt", header=T)
stem(gravity)
    **Error in stem(gravity) : 'x' must be numeric**

文件包含:

' spec_gravity' 0.31 0.35 0.36 0.36 0.37 0.38 0.4 0.4 0.4 0.41 0.41 0.42 0.42 0.42 0.42 0.42 0.43 0.44 0.45 0.46 0.46 0.47 0.48 0.48 0.48 0.51 0.54 0.54 0.55 0.58 0.62 0.66 0.66 0.67 0.68 0.75

如果你能提供帮助,我将不胜感激!谢谢!

1 个答案:

答案 0 :(得分:1)

gravity是一个数据框。 stem期望一个向量。您需要选择数据集的一列并传递给stem,即

## The first column
stem(gravity[,1])