问题标签 [ggally]
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 - 如何在R中通过GGally保存对象
我有一个非常愚蠢的问题要问大家。
我在 GGally 下使用 ggpairs 来创建相关矩阵,不知何故我发现 GGally 并没有像 ggplot2 那样提供保存功能。函数 ggsave 不适用于非 ggplot2 对象。我尝试使用 pdf 或 png,但它们不起作用。我想知道是否可以轻松将此图片保存到本地文件?谢谢你的热心帮助。
r - 如何将 geom_abline 添加到 ggpairs?
我想创造这样的东西
使用geom_abline
元素我得到一个错误(“二元运算符的非数字参数”)。
我怎样才能让它工作?
r - 带有 facet_wrap 的 ggparcoord 中的多条颜色线
我有一个数据框,其中包含以下格式的数据:
这只是样本数据,我总共有 4Type
和 7Subject
个类别。这是输出dput(head(avgRevenueBySubject))
:
我正在尝试使用以下代码绘制此信息:
我得到以下情节:
现在我们可以看到,我在facet
每个情节中都得到了不同的颜色和相同的颜色。
我想在每个单独的图上看到 4 条线的不同颜色,并且这些线的颜色在各个facet
.
任何帮助将非常感激。
r - 如何在图中显示因子值?
在 R 中绘制数据类型因子的变量时,Y 轴图显示因子水平(即数字),而不是因子的名称,尤其是在使用pairs()
函数绘制时。有没有办法在两个轴上显示因子的名称?
我尝试使用 将变量转换为字符as.character()
,但它不起作用,因为 R 引发错误。作为下面的示例代码生成附加图像
图书馆(ISLR)
对(工资)
工作类、健康等变量是因素,我希望图表显示因素的名称而不是数字。由于声誉低,无法发布图片。
r - 如何使用 R 生成方差分析矩阵
我有以下数据集:
我想要一个带有 p 值(如下所示)的 ANOVA 矩阵,用于在“分钟”上测试“测量”:
有任何想法吗?GGally允许这个?
r - Manipulating axis titles in ggpairs (GGally)
I'm using the code below to generate the following chart.
I'm currently trying to modify the display of the axis titles. In particular, I would like for the axis titles to be:
- Placed at a further distance from axis labels
- Placed at an angle
As an example, I would like to obtain axis titles similar to the ones pictured below (I'm interested in axis labels only, not in rest of the chart): Taken from : Geovisualist
I' tried adjusting my syntax changing the axis.title.x
to different values but it does not yield the desired results. For instance running the code with angle = 45
.
returns the same chart. I was able to control the axis labels by changing the axis.text.x
for instance but I can't find the answer how to control the axis titles in this plot. Any help will be much appreciated.
r - 从 ggpairs 图中打印单行
我想制作 mtcars 数据集的 ggpairs 图,但我只关心 mpg 和所有其他变量之间的关系,而不关心所有变量和所有变量之间的关系。
我将一些列更改为因子
和情节
有什么办法可以只显示情节的第一行吗?
r - 如何使用 GGally::ggpairs 制作气泡图?
我想使用GGally::ggpairs
.
使用以下参数ggplot2
很容易定义点/气泡大小:size
但是,GGally::ggpairs
这不起作用。下面的代码产生这个:
下面的代码甚至没有产生情节
任何想法如何解决这一问题?
r - 做这样的相关矩阵图的最佳方法是什么?
我使用 ggpairs 来生成这个图:
这是它的代码:
但是,我的目标是,得到这样的情节:
该图是一个示例,我使用以下三个 ggplot 代码制作了它。
我将它用于 geom_point 图:
这给出了以下情节:
我将它用于条形图:
这给出了以下情节:
我将其用于相关系数:
这给出了以下图:
我的问题是:获得我想要的情节的最佳方式是什么?我想从问卷中可视化likert-items,在我看来,这是一种非常好的方法。是否可以在不自己制作每个情节的情况下使用 ggpairs,就像我对自定义 ggpairs-plot 所做的那样。还是有其他方法可以做到这一点?
r - 使用 ggpairs 绘图时出错
我有以下df:
我只是想绘制成对的图和相关性。
我收到一个错误:
第二次,我尝试了没有日期,我可以绘制对,但仍然出现一些错误:
知道它是什么以及如何解决这些问题吗?