6

我用

frame <- read.table(paste('data', fname, sep="/"), sep=",", header=TRUE)
colnames(frame) <- c("pos", "word.length")
plot <- ggplot(frame, aes(x=pos, y=word.length)) + xlim(0,20) + ylim(0,20) + geom_density2d() + stat_density2d(aes(color=..level..))
png(paste("graphs/", fname, ".png", sep=""), width=600, height=600)
print(plot)
dev.off()

创造情节,但他们被切断了。我该如何解决?

http://ompldr.org/vZTN0eQ

我用来创建这个情节的数据: http: //sprunge.us/gKiL

4

1 回答 1

7

根据 ggplot2 书,您使用scale_x_continuous(limits=c(1,20))而不是xlim(1,20)

于 2012-06-05T17:22:01.243 回答