问题标签 [geom-col]
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 - 通过分组变量重新排序geom_col(错误:无法修改列,因为它是分组变量)
我有这个df,
我这样绘制:
现在我需要将事件从较高的总百分比排序到较低的总百分比,以便勒索首先出现在左侧,然后是身体虐待等。我尝试过:
但我得到了错误:
然后我尝试了ungroup
,或fct_rev
,但我无法让它工作!唯一可行的是将df导出为csv,然后再次导入,然后它就可以工作了。但是,这当然不是很有效......任何人请帮忙!
r - 我的条形图按与我的数据框不一致的顺序自动重新排序
我正在使用 ggplot 制作数据的条形图。我在我的数据框中按我想要的顺序排列了所有东西,但是当我绘制它时,它会以某种随机顺序重新排列。我如何告诉它按照数据框的顺序离开条形?谢谢
虹膜示例如下。在 iris 数据框中,物种按顺序排列为 setosa、versicolor、virginica。它们在条形图上按相反顺序排列。它似乎正在下降。这不是我的情节。我的没有明显的顺序。
r - ggplot:将 geom_col 与 facet_wrap 一起使用
我已经使用 R 6 个月了(相当新)。我使用 facet_wrap 函数和 geom_point 创建了一个漂亮的图形。
但是,在绘制我感兴趣的另一个参数时,我似乎没有成功使用 geom_col。
代码如下:
一直运行良好的代码如下:
为什么列之间有空格,即使我使用 facet_warp 将样本分成不同的盒子(似乎 R 仍在保留空白点?)
需要说明的是:我想在盒子里看到每 2-4 个样本,其中每个样本在不同日期的条相互粘在一起。我能够将它们堆叠起来,但我不想要那样。
我在这里做错了什么?任何帮助将非常感激。
提前谢谢你艾哈迈德
r - R:如何在R中按多个列+图表进行聚合和分组
假设我有这个:
我需要聚合新的数据表单,显示每个服务器上每个客户的总大小,例如:
之后,我需要将所有内容放在 geom_col 中,以显示按服务器直观分组的条形图。:) 再说一次 - 如果一个客户端位于多个服务器上,则它可以在图表中存在超过 1 个条形图
非常感谢你
r - 你如何在 R 中找到柱形图的统计数据?
我的数据集有 2 个变量:
1)Match_City(足球比赛所在城市的名称) 2) Home_score(主队进球数)
问题是有超过 1500 个城市,无法确定哪些城市的 Home_score 总数最高。我想知道我是否可以获得该柱形图的数据,即A市总共有20个来自主队的进球。我目前正在使用 geom_col() 来制作柱形图。我需要帮助!
r - Color/fill bars in geom_col based on another variable?
I have an uncolored geom_col
and would like it to display information about another (continuous) variable by displaying different shades of color in the bars.
Example
Starting with a geom_col
Suppose we want to color the bars according to how low/high mean(Sepal.Width)
in each grouping
(note: I don't know if there's a way to provide 'continuous' colors to a ggplot, but, if not, the following colors would be fine to use)
The end result should be the same geom_col as above but with the bars colored according to how low/high mean(Sepal.Width)
is.
Notes
- This answer shows something similar but is highly manual, and is okay for 3 bars, but not sustainable for many plots with a high number of bars (since would require too many
case_when
conditions to be manually set) - This is similar but the coloring is based on a variable already displayed in the plot, rather than another variable
- Note also, in the example I provide above, there are 3 bars and I provide 3 colors, this is somewhat manual and if there's a better (i.e. less manual) way to designate colors would be glad to learn it
What I've tried
I thought this would work, but it seems to ignore the colors I provide
r - 在多面条形图中显示所有变量
我想制作一个bar chart
突出不同类别的内容 - 我geom_col
为每个国家/地区使用一个方面。
问题是彩色版本与'greyed'
特定国家的版本不一致;相反,它总是在图表的底部。
使用此代码生成:
是否可以为与国家相关的列的特定区域着色?
谢谢
r - 如何在 geom_col 图中仅标记模态峰值
我想在我的 geom_col 图上仅在模态条(最高峰值)上方放置一个标签,给出 x 轴值(CAG)。这是一个例子,但我只能让它标记每个峰值。
我将非常感谢仅标记顶峰的帮助
r - 制作具有多个 y 值的 ggplot 图表
我有一个有 2 行 3 列的数据框。我希望能够绘制所有三列,它可能在 geom_col 或 geom_bar 图表中最有意义。两个图的 x 轴将保持不变。
数据框有 a1、b1、b2 列
我使用此模板创建了一个图表。希望这些细节对您有所帮助。