在ggplot生成的图中,沿x轴的每个标签都是一个字符串,即“1990年的产品”。但是,生成的情节在每个单词之间都有一个句点。也就是说,上面的字符串显示为“the.product.in.1990”</p>
我怎样才能确保上面的“。” 是不是加了?
以下代码是我用来为沿 x 轴的每个点添加字符串的代码
last_plot()+scale_x_discrete(limits=ddata$labels$text)
示例代码:
library(ggdendro)
x <- read.csv("test.csv",header=TRUE)
d <- as.dist(x,diag=FALSE,upper=FALSE)
hc <- hclust(d,"ave")
dhc <- as.dendrogram(hc)
ddata <- dendro_data(dhc,type="rectangle")
ggplot(segment(ddata)) + geom_segment(aes(x=x0,y=y0,xend=x1,yend=y1))
last_plot() + scale_x_discrete(limits=ddata$labels$text)
每一行ddata$labels$text
都是一个字符串,例如“the product in 1990”。我想在生成的图中保持相同的格式,而不是“the.product.in.1990”