我有一项调查的结果。我正在尝试创建一个显示两个变量关系的图形:“Q1”和“Q9.1”。“Q1”是独立的,“Q9.1”是依赖的。这两个变量都有来自类似规模问题的响应:-2,-1,0,1,2。一个典型的情节将答案放在一起——不是很有趣或信息量不大。我在想 hexbin 将是要走的路。数据在 lpp 中。我无法对 x 和 y 使用“Q1”和“Q9.1”。然而:
> is.numeric("Q1")
[1] FALSE
q1.num <- as.numeric("Q1")
Warning message:
NAs introduced by coercion
Q1 的值为(数百个实例):-2,-1,0,1,2
如何用这些数据制作一个 hexbin 图表?我应该考虑另一个图表吗?
到目前为止的错误消息:
Warning messages:
1: In xy.coords(x, y, xl, yl) : NAs introduced by coercion
2: In xy.coords(x, y, xl, yl) : NAs introduced by coercion
3: In min(x) : no non-missing arguments to min; returning Inf
4: In max(x) : no non-missing arguments to max; returning -Inf
5: In min(x) : no non-missing arguments to min; returning Inf
6: In max(x) : no non-missing arguments to max; returning -Inf