奇怪的绘图结果

时间:2016-01-22 15:57:53

标签: r plot bigdata

我正在尝试使用R对海龟进行一些分析,问题是每当我做教程并尝试绘图时都很好,但是当我使用我的真实数据集时,它会变得奇怪。附件是我尝试使用以下内容生成简单散点图的结果照片:

attach(turtles)
plot(ccl, weight, main="Weight by CCL Scatterplot",
xlab="CCL ", ylab="Turtle Weight ", pch=19)

知道发生了什么?

谢谢! Example

1 个答案:

答案 0 :(得分:0)

ccl和/或weight可能是characterfactor个类。

使用此R代码检查:

class(ccl)
class(weight)

然后将字符转换为数字,例如:

ccl2 <- as.numeric(ccl)
weight2 <- as.numeric(weight)