问题标签 [bwplot]
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 - 等效于 bwplot 的箱线图 lwd 参数
我想用较粗的线条绘制方框。在boxplot
函数中我只是简单地放了lwd=2
,但在格子中bwplot
我可以把头发拉出来,但还没有找到解决方案!
(我的意思是上图中的蓝色框)
可使用的示例代码:
r - 将带状图点添加到 bwplot(R 中的点阵图形)
我喜欢箱线图显示的附加信息,但我需要条形图中彩色点传达的信息。显然 par(new=T) 不起作用,那么如何将这些点叠加到箱线图上呢?
r - 带 bwplot 的分组水平箱线图
我有以下代码允许通过bwplot
. lattice
可重现的例子..
这很好用,但我希望箱线图是水平的,所以我更改了第一行,保持其他所有内容相同:
但是图表是这样出来的。我尝试过使用代码但没有成功。我有两个问题:首先,我怎么能,或者是否可以让箱线图不叠加?其次,更一般地说,我怎样才能将颜色面板设置为灰度,所以情节以灰色阴影或黑白色调出现?
r - bwplot 轴值显示不正确
以下代码生成 bwplot,但 y 轴上的值是 1,2,3,4,5 而不是 10,11,12,13,14。我该如何纠正?
r - 如何在 x 轴上创建带有日期的 bwplot
用户
感谢@McQueenDon 在 r-nabble 上的回复
http://r.789695.n4.nabble.com/boxplot-with-x-axis-time-td4686787.html#a4687746
我设法生成了一个单一变量的 boxplot::base,其中 x 轴的格式正确并在采集日期间隔开。
如果我想用 bwplot::lattice 生成它怎么办?我需要这个,因为我还想使用条件因子。
这是一个可重复的示例(再次感谢@McQueenDon)
谢谢
朱塞佩
r - 箱线图和 xyplot 重叠
我已经用我的数据和库的bwplot
功能做了一个条件箱线图lattice
。
然后,我做了一个 xyplot,因为我想将降水数据添加到上一个图表中,也使用xyplot
from lattice
library。
我尝试使用grid.arrange
来自gridExtra
库的同一图表上绘制它们:
但是有了这个,我不重叠数据,但结果是这样的
我怎样才能在由情节决定的箱线图“内部”绘制降水数据?
谢谢
r - How can I add text in a bwplot (lattice graphics in R)?
I need help with lattice bwplot. I made my multipanel plots and I put them in the same window.
What I would like to do, it's to include same text outside the plot margin in each plot, letter A for the first plot and B for the second useful to recall this plot in my report (e.g. Fig. 1A and Fig. 1).
Someone has useful suggestions?
r - 用于 bwplots 的 R 格子标签
我想在格子 bwplot 中标记每个框和晶须的一些统计数据。下面是一个通用示例。
这不起作用 - 不知道为什么我得到的标签是 45 而不是 100。必须有一种方法可以访问每个面板中每个框和胡须的长度、平均值、中值等内容?
r - Coloring each violin in a different color in panel.violin of bwplot
Suppose I have this example data.frame
:
and I would like to use the panel.violin
function of bwplot
, such that the violins are filled with the colors that correspond to the y
's in df
.
Obviously the following doesn't work:
One more thing that would be nice is to be able to disable the default x axis of panel.violin
r - R lattice bwplot:根据因子水平用特定颜色填充箱线图
我以这个数据框为例:
看起来像:
为具有 3 个水平的因子类型的 Col3:NN YY YN
我想使用 lattice bwplot 制作箱线图,并为每个级别分配特定颜色:
使用 bwplot 函数:
结果如下图:
显然颜色与我的数据框中的级别无关,因为 YY 框并不总是绿色。有没有办法分配 YY:green、NN:red 和 YN:amber?