我正在创建此数据中变量“STATE”中“DISTANCE”比例分布的条形图。我的代码如下:
library(R.utils)
df = loadObject("bchart.bin")
df.prop = as.data.frame(prop.table(table(df$STATE, df$DISTANCE),1)) #Creating proportions data
names(df.prop) = c('State','Distance','Proportion')
library(lattice)
pdf(file="bchart.pdf", width=10, height=10, pointsize=10)
barchart(State ~ Proportion, groups=Distance, data=df.prop, stack=T, horizontal=T, auto.key=list(columns=5, space="top"), par.settings = list(superpose.polygon = list(col = rev(gray.colors(5)))))
dev.off()
pdf文件在这里。当“>”打印正常时,为什么图例将“≤”打印为“...”?这只发生在 pdf 或 eps 上。如果我使用 png,则输出很好。