我是新手 R 用户,并尝试在我已经使用 treemap 包创建了一些树图的工作区中创建散点图。当我输入:
plot(XData, YData, type = "p", main="Title", xlab="XData Title", ylab="YData Title")
R返回:
Warning messages:
1: graphical parameter "type" is obsolete
2: graphical parameter "type" is obsolete
3: In rect(xleft, ybottom, xright, ytop, col = col, ...) :
graphical parameter "type" is obsolete
我假设 treemap 包做了一些事情来导致 R 自动使用 rect() 函数,而不是简单地创建一个散点图,但不知道如何关闭它。当我取出“类型”参数时,R 返回一个顶起的树形图。我已经尝试过分离(树形图)。任何帮助 R 创建散点图将不胜感激。
如果代码格式不正确,我提前道歉,这是我第一次发布。