Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对如何绘制具有不同轴比例的图形有疑问,伪代码如下:
plot(data1,data2,xlim=c(0,10,100,1000),ylim=c(0,1000))
这意味着x轴的间隔不是均匀的,而是具有不同的尺度。
谢谢德温!你给了我另一种情节。我要绘制的就是这个图,你知道怎么绘制吗?
options(scipen=8); plot(10^(1:5),1:5, log="x")
一个常见的问题是如何处理对数刻度上 0 的位置,但请尝试log(0)在控制台输入以查看为什么它不会出现。
log(0)