- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想绘制一个密度图,以使轴紧邻刻度线(或至少非常靠近刻度线)。如本MWE所示,即使我已指定ggplot2
和xlim
,ylim
在刻度线与x轴和y轴的轴之间保留了一些空间。如何删除它们?
在其他类型的绘图中,似乎可以调用scale_y_continuous(limits=c(0, 100), expand = c(0, 0))
(for example)之类的东西,但是使用这些参数调用scale_linetype_manual()
似乎没有任何作用。
还要注意,在这里的注释中,我正在使用geom_segment
绘制轴。有一个更好的方法吗?
set.seed(0)
the.df <- data.frame( x = rnorm(800, 50, 10), group = rep(letters[1:8], each = 100))
p <- ggplot(the.df) +
stat_density(aes(x = x, linetype = group), geom = "line", position = "identity") +
xlim(10, 90) + ylim(0, 0.06) +
scale_linetype_manual(values = c("11", "12", "13", "14", "21", "22", "23", "24")) +
geom_segment(aes(x = 10, y = 0, xend = 90, yend = 0)) +
geom_segment(aes(x = 10, y = 0, xend = 10, yend = 0.06))
p
最佳答案
原来scale_x_continuous()
和scale_x_continuous
起作用了。我只是没有正确使用它们。
set.seed(0)
the.df <- data.frame( x = rnorm(800, 50, 10), group = rep(letters[1:8], each = 100))
p <- ggplot(the.df) +
stat_density(aes(x = x, linetype = group), geom = "line", position = "identity") +
scale_linetype_manual(values = c("11", "12", "13", "14", "21", "22", "23", "24")) +
scale_x_continuous(limits=c(10, 90), expand = c(0, 0)) +
scale_y_continuous(limits=c(0, 0.06), expand = c(0, 0)) +
geom_segment(aes(x = 10, y = 0, xend = 90, yend = 0)) +
geom_segment(aes(x = 10, y = 0, xend = 10, yend = 0.06))
p
关于r - 除去xlim和ylim之外的多余空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23710875/
我的服务层有如下方法 public ModuleResponse GetModules(ModuleRequest request) { var response = new ModuleRe
我构建的工具栏与大多数工具栏一样,minHeight 设置为 actionBarSize: 但是,如果我删除这个属性,就完全没有区别了。工具栏保持其 actionBarSize,即使我删除菜单并将
我已经为 SVG 和剪辑路径苦苦挣扎了一段时间。 我正在尝试创建一个三 Angular 形剪辑路径,它将覆盖照片以给顶部一个“三 Angular 形”边缘。 我试图实现与照片完全相同的效果,但三 An
我有一个带有 2 个索引的 PostgreSQL 表。其中一个索引涵盖了 website_id 和 tweet_id 列,是一个唯一的 B 树索引。第二个索引只覆盖 website_id 列,是一个非
我是一名优秀的程序员,十分优秀!