gpt4 book ai didi

r - 打印带有加号的正数

转载 作者:行者123 更新时间:2023-12-04 11:35:18 26 4
gpt4 key购买 nike

我正在计算年份与引用年份之间的差额。我想将结果用作绘图中的x值。但是,如何打印带有正数(-2,-1、0,+ 1,+ 2)的+号呢?

dat <- data.frame(year = c(2000, 2001, 2002, 2003, 2004), ref = rep(2002)) 
dat$diff <- dat$year - dat$ref

ggplot(dat, aes(x = diff))

最佳答案

你可以做

library(ggplot2)
dat <- data.frame(year = c(2000, 2001, 2002, 2003, 2004), ref = rep(2002))
dat$diff <- dat$year - dat$ref
ggplot(dat, aes(x = diff)) +
scale_x_continuous(labels = function(x) sprintf("%+d", x))

关于r - 打印带有加号的正数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37325202/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com