R语言卡方检验--ggstatsplot包参数说明

ggstatsplot包参数说明

原始博客地址:https://blog.csdn.net/m0_45248682/article/details/104084740
ggbarstats函数:

ggbarstats(
  data,
  main,
  condition,
  counts = NULL,
  ratio = NULL,
  paired = FALSE,
  labels.legend = NULL,
  results.subtitle = TRUE,
  stat.title = NULL,
  sample.size.label = TRUE,
  label.separator = " ",
  label.text.size = 4,
  label.fill.color = "white",
  label.fill.alpha = 1,
  bar.outline.color = "black",
  bf.message = TRUE,
  sampling.plan = "indepMulti",
  fixed.margin = "rows",
  prior.concentration = 1,
  title = NULL,
  subtitle = NULL,
  caption = NULL,
  legend.position = "right",
  x.axis.orientation = NULL,
  conf.level = 0.95,
  nboot = 100,
  simulate.p.value = FALSE,
  B = 2000,
  bias.correct = FALSE,
  legend.title = NULL,
  xlab = NULL,
  ylab = "Percent",
  k = 2,
  perc.k = 0,
  bar.label = "percentage",
  data.label = NULL,
  bar.proptest = TRUE,
  ggtheme = ggplot2::theme_bw(),
  ggstatsplot.layer = TRUE,
  package = "RColorBrewer",
  palette = "Dark2",
  direction = 1,
  ggplot.component = NULL,
  return = "plot",
  messages = TRUE,
  x = NULL,
  y = NULL
)
Arguments
data	
A dataframe (or a tibble) from which variables specified are to be taken. A matrix or tables will not be accepted.

main	
The variable to use as the rows in the contingency table.

condition	
The variable to use as the columns in the contingency table. Default is NULL. If NULL, one-sample proportion test (a goodness of fit test) will be run for the x variable. Otherwise an appropriate association test will be run. This argument can not be NULL for ggbarstats function.

counts	
A string naming a variable in data containing counts, or NULL if each row represents a single observation (Default).

ratio	
A vector of proportions: the expected proportions for the proportion test (should sum to 1). Default is NULL, which means the null is equal theoretical proportions across the levels of the nominal variable. This means if there are two levels this will be ratio = c(0.5,0.5) or if there are four levels this will be ratio = c(0.25,0.25,0.25,0.25), etc.

paired	
Logical indicating whether data came from a within-subjects or repeated measures design study (Default: FALSE). If TRUE, McNemar's test subtitle will be returned. If FALSE, Pearson's chi-square test will be returned.

labels.legend	
A character vector with custom labels for levels of the x variable displayed in the legend.

results.subtitle	
Decides whether the results of statistical tests are to be displayed as a subtitle (Default: TRUE). If set to FALSE, only the plot will be returned.

stat.title	
Title for the effect being investigated with the chi-square test. The default is NULL, i.e. no title will be added to describe the effect being shown. An example of a stat.title argument will be something like "main x condition" or "interaction".

sample.size.label	
Logical that decides whether sample size information should be displayed for each level of the grouping variable y (Default: TRUE).

label.separator	
If "both" counts and proportion information is to be displayed in a label, this argument decides whether these two pieces of information are going to be on the same line (" ") or on separate lines ("\n").

label.text.size	
Numeric that decides text size for slice/bar labels (Default: 4).

label.fill.color	
Character that specifies fill color for slice/bar labels (Default: white).

label.fill.alpha	
Numeric that specifies fill color transparency or "alpha" for slice/bar labels (Default: 1 range 0 to 1).

bar.outline.color	
Character specifying color for bars (default: "black").

bf.message	
Logical that decides whether to display a caption with results from Bayes Factor test in favor of the null hypothesis (default: FALSE).

sampling.plan	
Character describing the sampling plan. Possible options are "indepMulti" (independent multinomial; default), "poisson", "jointMulti" (joint multinomial), "hypergeom" (hypergeometric). For more, see ?BayesFactor::contingencyTableBF().

fixed.margin	
For the independent multinomial sampling plan, which margin is fixed ("rows" or "cols"). Defaults to "rows".

prior.concentration	
Specifies the prior concentration parameter, set to 1 by default. It indexes the expected deviation from the null hypothesis under the alternative, and corresponds to Gunel and Dickey's (1974) "a" parameter.

title	
The text for the plot title.

subtitle	
The text for the plot subtitle. Will work only if results.subtitle = FALSE.

caption	
The text for the plot caption.

legend.position	
The position of the legend "none", "left", "right", "bottom", "top" (Default: "right").

x.axis.orientation	
The orientation of the x axis labels one of "slant" or "vertical" to change from the default horizontal orientation (Default: NULL which is horizontal).

conf.level	
Scalar between 0 and 1. If unspecified, the defaults return 95% lower and upper confidence intervals (0.95).

nboot	
Number of bootstrap samples for computing confidence interval for the effect size (Default: 100).

simulate.p.value	
a logical indicating whether to compute p-values by Monte Carlo simulation.

B	
an integer specifying the number of replicates used in the Monte Carlo test.

bias.correct	
If TRUE, a bias correction will be applied to Cramer's V.

legend.title	
Title text for the legend.

xlab	
Custom text for the x axis label (Default: NULL, which will cause the x axis label to be the x variable).

ylab	
Custom text for the y axis label (Default: "percent").

k	
Number of digits after decimal point (should be an integer) (Default: k = 2).

perc.k	
Numeric that decides number of decimal places for percentage labels (Default: 0).

bar.label, data.label	
Character decides what information needs to be displayed on the label in each pie slice. Possible options are "percentage" (default), "counts", "both".

bar.proptest	
Decides whether proportion test for main variable is to be carried out for each level of y (Default: TRUE).

ggtheme	
A function, ggplot2 theme name. Default value is ggplot2::theme_bw(). Any of the ggplot2 themes, or themes from extension packages are allowed (e.g., ggthemes::theme_fivethirtyeight(), hrbrthemes::theme_ipsum_ps(), etc.).

ggstatsplot.layer	
Logical that decides whether theme_ggstatsplot theme elements are to be displayed along with the selected ggtheme (Default: TRUE). theme_ggstatsplot is an opinionated theme layer that override some aspects of the selected ggtheme.

package	
Name of package from which the palette is desired as string or symbol.

palette	
Name of palette as string or symbol.

direction	
Either 1 or -1. If -1 the palette will be reversed.

ggplot.component	
A ggplot component to be added to the plot prepared by ggstatsplot. This argument is primarily helpful for grouped_ variant of the current function. Default is NULL. The argument should be entered as a function. If the given function has an argument axes.range.restrict and if it has been set to TRUE, the added ggplot component might not work as expected.

return	
Character that describes what is to be returned: can be "plot" (default) or "subtitle" or "caption". Setting this to "subtitle" will return the expression containing statistical results. If you have set results.subtitle = FALSE, then this will return a NULL. Setting this to "caption" will return the expression containing details about Bayes Factor analysis, but valid only when type = "parametric" and bf.message = TRUE, otherwise this will return a NULL.

messages	
Decides whether messages references, notes, and warnings are to be displayed (Default: TRUE).

x	
The variable to use as the rows in the contingency table.

y	
The variable to use as the columns in the contingency table. Default is NULL. If NULL, one-sample proportion test (a goodness of fit test) will be run for the x variable. Otherwise an appropriate association test will be run. This argument can not be NULL for ggbarstats function.

官网地址:http://127.0.0.1:10532/help/library/ggstatsplot/html/ggbarstats.html

《餐馆点餐管理系统——基于Java和MySQL的课程设计解析》 在信息技术日益发达的今天,餐饮行业的数字化管理已经成为一种趋势。本次课程设计的主题是“餐馆点餐管理系统”,它结合了编程语言Java和数据库管理系统MySQL,旨在帮助初学者理解如何构建一个实际的、具有基本功能的餐饮管理软件。下面,我们将深入探讨这个系统的实现细节及其所涉及的关键知识点。 我们要关注的是数据库设计。在“res_db.sql”文件中,我们可以看到数据库的结构,可能包括菜品表、订单表、顾客信息表等。在MySQL中,我们需要创建这些表格定义相应的字段,如菜品ID、名称、价格、库存等。此外,还要设置主键、外键来保证数据的一致性和完整性。例如,菜品ID作为主键,确保每个菜品的唯一性;订单表中的顾客ID和菜品ID则作为外键,顾客信息表和菜品表关联,形成数据间的联系。 接下来,我们来看Java部分。在这个系统中,Java主要负责前端界面的展示和后端逻辑的处理。使用Java Swing或JavaFX库可以创建用户友好的图形用户界面(GUI),让顾客能够方便地浏览菜单、下单。同时,Java还负责MySQL数据库进行交互,通过JDBC(Java Database Connectivity)API实现数据的增删查改操作。在程序中,我们需要编写SQL语句,比如INSERT用于添加新的菜品信息,SELECT用于查询所有菜品,UPDATE用于更新菜品的价格,DELETE用于删除不再提供的菜品。 在系统设计中,我们还需要考虑一些关键功能的实现。例如,“新增菜品和价格”的功能,需要用户输入菜品信息,然后通过Java程序将这些信息存储到数据库中。在显示所有菜品的功能上,程序需要从数据库获取所有菜品数据,然后在界面上动态生成列表或者表格展示。同时,为了提高用户体验,可能还需要实现搜索和排序功能,允许用户根据菜品名称或价格进行筛选。 另外,安全性也是系统设计的重要一环。在连接数据库时,要避免SQL注入攻击,可以通过预编译的PreparedStatement对象来执行SQL命令。对于用户输入的数据,需要进行验证和过滤,防止非法字符和异常值。 这个“餐馆点餐管理系统”项目涵盖了Java编程、数据库设计管理、用户界面设计等多个方面,是一个很好的学习实践平台。通过这个项目,初学者不仅可以提升编程技能,还能对数据库管理和软件工程有更深入的理解。在实际开发过程中,还会遇到调试、测试、优化等挑战,这些都是成长为专业开发者不可或缺的经验积累
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值