问题标签 [geom-area]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
r - 堆叠的 ggplot2 geom_area 重新运行一个空图
我正在尝试使用 geom_area 来生成堆叠面积图,但它会生成入口图。这是一个例子
我阅读了问题为什么我在 ggplot2 中的堆叠面积图是空的 ,为什么我在 ggplot2 中的堆叠面积图是空 的,但是在那里发布的解决方案并没有解决我的问题。感谢您的任何建议。
r - 用 ggplot 显示 SPEI:当符号改变时,geom_area 在不同的位置结束/开始
这是一些数据
我想用 ggplot 绘制 SPEI 值,正如我在这里学到的那样: 如何格式化 R 中 SPEI 包的硬编码绘图函数的 x 轴?
如您所见,当符号从正变为负时,geom_area 不会在同一位置结束/开始。有人知道如何解决这个问题吗?我考虑过使用Date
而不是yearmon
,但遇到了同样的问题。
r - ggplot:如何在三个不同的 geom_line() 下应用 geom_area() 或类似的填充区域而不重叠每个独立填充?
我有一个基于我的数据的图nd
,其中三个分别geom_line()
显示了 1 年:nd$y_et
、3 年:nd$y_tre
和 5 年:后的死亡概率nd$y_fem
,作为切除淋巴结数量的函数nd$n_fjernet
。
问题:如何填充三个个体下方的每个区域geom_line()
,nd$y_et, y_tre, y_fem
而不会使填充与后续geom_line
+重叠fill
?
我尝试过geom_area
,geom_polygon
但甚至没有接近正确的解决方案。
当前地块
和
应该给出预期的输出:
更新
我应用了下面提供的解决方案,产生
和
当我们接近预期的情节时,不幸的是仍然重叠fills
。后面blue-fill
可以看到;red-fill
并且,blue-fill
和red-fill
都在 后面green-fill
。
问题:如何包含fills
不重叠的?
我的数据nd
r - 如何使用 Geom_Area (GGplot) 制作正方形图
我使用 ggplots2 库创建了 25 个图,我对 Geom_Area 函数特别感兴趣。但是,我想创建方形图,具有更宽的 x 轴,而不是那些彼此相邻堆叠的小矩形图。我使用此函数创建了我的 25 个变量图,并使用以下代码:
这个问题看起来和我的很相似,所以我尝试添加:position = "fill"。正如您在下面的输出中看到的那样,这不起作用。希望有人可以提供帮助,对我来说意义重大!
r - Area plot using R tidyverse, ggplot, geom_area
I am using the follow code to generate an area plot using tidyverse
, ggplot
function and geom_area
.
This works, but there are two open triangles at the bottom, which I would like to have filled with green and blue, respectively. I thought I could solve this by changing the code like this:
But now the plotting does not work at all anymore. This post did not help me. Could anybody help, please?