int不再使用ggplot2

int不再使用ggplot2

本文介绍了conf.int不再使用ggplot2,stat_summary在3.3中工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用conf.int创建围绕jitterplot的盒子。这一直工作到R升级到3.3。

  stat_sum_df_all<  -  function(fun,geom =crossbar,...)是否有已知的解决方法? {
stat_summary(fun.data = fun,geom = geom,...)
}


ggplot(数据集,aes(factor(Group),dataset [,y]))+ labs(y = y,x =x)+
stat_sum_df_all(median_hilow,conf.int = 1,linetype ='solid')



返回以下错误:

错误:未知参数:conf.int

解决方案

我通过将conf.int = 1与fun.args =(conf.int = 1)如下:

  ggplot(数据集,aes(factor(Group),dataset [,y]))+ labs(y = y ,x =x)+ 
stat_sum_df_all(median_hilow,fun.args =(conf.int = 1),linetype ='solid')


I am using conf.int for the creation of boxes around a jitterplot. This had worked until upgrading R to 3.3. Is there a known fix for this?

stat_sum_df_all <- function(fun, geom="crossbar", ...) {
stat_summary(fun.data=fun, geom=geom, ...)
}


ggplot(dataset, aes(factor(Group), dataset[, y] )) + labs(y=y,     x="x") +
    stat_sum_df_all("median_hilow",conf.int=1, linetype='solid')

Returns the following error:

Error: Unknown parameters: conf.int

解决方案

I have solved this issue by wrapping conf.int=1 with fun.args=(conf.int=1), as below:

ggplot(dataset, aes(factor(Group), dataset[, y] )) + labs(y=y,     x="x") +
stat_sum_df_all("median_hilow",fun.args=(conf.int=1), linetype='solid')

这篇关于conf.int不再使用ggplot2,stat_summary在3.3中工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 20:33