【问题标题】:Dynamically parse discrete x-axis labels动态解析离散的 x 轴标签
【发布时间】:2015-03-14 21:13:31
【问题描述】:

改编自这个已回答的问题:Customize axis labels 下面 MWE 中的这一行可以解析手动指定的 x 轴标签/值:

scale_x_discrete(labels=parse(text=c("The~First~Value","A~Second~Value","Finally~Third~Value")))

但任何尝试将 c() 动态替换为 xo(即包含导入表达式的有序列表)都会失败...

如何格式化或调整此列以使其正常工作?我很困惑,因为 parse 命令在 c() 的内容上运行良好...

在下面的模拟数据框中,为简单起见,我在此示例中包含的唯一字符是~(用于解析和产生空间)。完整上下文将包含从外部管理的表中导入的上标、下标、符号和希腊字符。

MWE:

library(ggplot2)

print("Program started")

z <- c("1","2","3")
x <- c("The~First~Value","A~Second~Value","Finally~Third~Value")
s <- c("No","No","No","Yes","Yes","Yes")
y <- c(1,2,3,2,3,4)
df <- as.data.frame(cbind(x=c(x,x),s=s,y=y,z=c(z,z)))

##########################################################################
xo <- as.data.frame(cbind(z,x))
xo <- xo[,"x"]
df[,"x"] <- factor(df[,"x"], levels=xo,ordered=TRUE)
##########################################################################
#xo <- levels(droplevels(xo))

gg <- ggplot(data = df, aes_string(x="x", y="y", weight="y", ymin=paste0("y"), ymax=paste0("y"), fill="s"));
dodge_str <- position_dodge(width = NULL, height = NULL);
gg <- gg + geom_bar(position=dodge_str, stat="identity", size=.3, colour = "black",width=.5)
#gg <- gg + scale_x_discrete(labels=parse(text=c("The~First~Value","A~Second~Value","Finally~Third~Value")))
gg <- gg + scale_x_discrete(labels=parse(text=c(xo)))

print(gg)

print("Program complete - a graph should be visible.")

【问题讨论】:

  • 为什么不对 x 使用有序因子?然后,因子排序基于 c,因子标记基于 x。

标签: r parsing ggplot2


【解决方案1】:

class(xo) 的调查让我意识到我正在尝试使用类型因子的对象,我认为在 parse 中作为参数 text 处理不好。

与其尝试删除关卡和因素,不如将其转换为字符列表(我一直认为它是这样的)似乎更简单、更稳定。

library(ggplot2)

print("Program started")

z <- c("1","2","3")
x <- c("The~First~Value","A~Second~Value","Finally~Third~Value")
s <- c("No","No","No","Yes","Yes","Yes")
y <- c(1,2,3,2,3,4)
df <- as.data.frame(cbind(x=c(x,x),s=s,y=y,z=c(z,z)))

##########################################################################
xo <- as.data.frame(cbind(z,x))
xo <- xo[,"x"]
df[,"x"] <- factor(df[,"x"], levels=xo,ordered=TRUE)
##########################################################################
xo <- as.character(xo)

gg <- ggplot(data = df, aes_string(x="x", y="y", weight="y", ymin=paste0("y"), ymax=paste0("y"), fill="s"));
dodge_str <- position_dodge(width = NULL, height = NULL);
gg <- gg + geom_bar(position=dodge_str, stat="identity", size=.3, colour = "black",width=.5)
#gg <- gg + scale_x_discrete(labels=parse(text=c("The~First~Value","A~Second~Value","Finally~Third~Value")))
#gg <- gg + scale_x_discrete(labels=parse(text=x))
gg <- gg + scale_x_discrete(labels=parse(text=xo))

print(gg)

print("Program complete - a graph should be visible.")

【讨论】:

    猜你喜欢
    • 2019-10-26
    • 2016-06-05
    • 2017-08-24
    • 2015-10-18
    • 2014-07-30
    • 2013-06-21
    • 2016-05-14
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多