R Scatterplot,用作标签的变换值

时间:2016-08-02 12:17:58

标签: r plot scatter-plot

我有一个简单的数据框并产生一个散点图:

a <- c(-1,-2,-1.5)
b <- c(1,3,2)
df <- data.frame(a,b)
plot(a , b) 

结果: enter image description here

我想删除x轴标签前的减号,即将标签乘以-1。

是一种方法吗?还是我必须在数据框中为标签创建另一列?

1 个答案:

答案 0 :(得分:2)

尝试

plot(a, b, xaxt = "n")
pos <- axTicks(1)
axis(1, at = pos, labels = abs(pos))

enter image description here