Movatterモバイル変換


[0]ホーム

URL:


Skip to contents

Pie charts with statistical tests

Source:R/ggpiestats.R
ggpiestats.Rd

Pie charts for categorical data with statistical details included in the plotas a subtitle.

Usage

ggpiestats(data,x,  y=NULL,  counts=NULL,  type="parametric",  paired=FALSE,  results.subtitle=TRUE,  label="percentage",  label.args=list(direction="both"),  label.repel=FALSE,  digits=2L,  proportion.test=results.subtitle,  digits.perc=0L,  bf.message=TRUE,  ratio=NULL,  conf.level=0.95,  sampling.plan="indepMulti",  fixed.margin="rows",  prior.concentration=1,  title=NULL,  subtitle=NULL,  caption=NULL,  legend.title=NULL,  ggtheme=ggstatsplot::theme_ggstatsplot(),  package="RColorBrewer",  palette="Dark2",  ggplot.component=NULL,...)

Arguments

data

A data frame (or a tibble) from which variables specified are tobe taken. Other data types (e.g., matrix,table, array, etc.) willnotbe accepted. Additionally, grouped data frames from{dplyr} should beungrouped before they are entered asdata.

x

The variable to use as therows in the contingency table. Pleasenote that if there are empty factor levels in your variable, they will bedropped.

y

The variable to use as thecolumns in the contingency table.Please note that if there are empty factor levels in your variable, theywill be dropped. Default isNULL. IfNULL, one-sample proportion test(a goodness of fit test) will be run for thex variable. Otherwise anappropriate association test will be run. This argument can not beNULLforggbarstats().

counts

The variable in data containing counts, orNULL if each rowrepresents a single observation.

type

A character specifying the type of statistical approach:

  • "parametric"

  • "nonparametric"

  • "robust"

  • "bayes"

You can specify just the initial letter.

paired

Logical indicating whether data came from a within-subjects orrepeated measures design study (Default:FALSE).

results.subtitle

Decides whether the results of statistical tests areto be displayed as a subtitle (Default:TRUE). If set toFALSE, onlythe plot will be returned.

label

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

label.args

Additional aesthetic arguments that will be passed toggplot2::geom_label().

label.repel

Whether labels should be repelled using{ggrepel}package. This can be helpful in case of overlapping labels.

digits

Number of digits for rounding or significant figures. May alsobe"signif" to return significant figures or"scientific"to return scientific notation. Control the number of digits by adding thevalue as suffix, e.g.digits = "scientific4" to have scientificnotation with 4 decimal places, ordigits = "signif5" for 5significant figures (see alsosignif()).

proportion.test

Decides whether proportion test forx variable is tobe carried out for each level ofy. Defaults toresults.subtitle. Inggbarstats(), onlyp-values from this test will be displayed.

digits.perc

Numeric that decides number of decimal places forpercentage labels (Default:0L).

bf.message

Logical that decides whether to display Bayes Factor infavor of thenull hypothesis. This argument is relevant onlyforparametric test (Default:TRUE).

ratio

A vector of proportions: the expected proportions for theproportion test (should sum to1). Default isNULL, which means the nullis equal theoretical proportions across the levels of the nominal variable.E.g.,ratio = c(0.5, 0.5) for two levels,ratio = c(0.25, 0.25, 0.25, 0.25) for four levels, etc.

conf.level

Scalar between0 and1 (default:95%confidence/credible intervals,0.95). IfNULL, no confidence intervalswill be computed.

sampling.plan

Character describing the sampling plan. Possible options:

fixed.margin

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

prior.concentration

Specifies the prior concentration parameter, setto1 by default. It indexes the expected deviation from the nullhypothesis 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 ifresults.subtitle = FALSE.

caption

The text for the plot caption. This argument is relevant onlyifbf.message = FALSE.

legend.title

Title text for the legend.

ggtheme

A{ggplot2} theme. Default value istheme_ggstatsplot(). Any of the{ggplot2} themes (e.g.,ggplot2::theme_bw()), or themes from extension packages are allowed(e.g.,ggthemes::theme_fivethirtyeight(),hrbrthemes::theme_ipsum_ps(),etc.). But note that sometimes these themes will remove some of the detailsthat{ggstatsplot} plots typically contains. For example, if relevant,ggbetweenstats() shows details about multiple comparison test as alabel on the secondary Y-axis. Some themes (e.g.ggthemes::theme_fivethirtyeight()) will remove the secondary Y-axis andthus the details as well.

package, palette

Name of the package from which the given palette is tobe extracted. The available palettes and packages can be checked by runningView(paletteer::palettes_d_names).

ggplot.component

Aggplot component to be added to the plot preparedby{ggstatsplot}. This argument is primarily helpful forgrouped_variants of all primary functions. Default isNULL. The argument shouldbe entered as a{ggplot2} function or a list of{ggplot2} functions.

...

Currently ignored.

Details

For details, see:https://indrajeetpatil.github.io/ggstatsplot/articles/web_only/ggpiestats.html

Summary of graphics

graphical elementgeom usedargument for further modification
pie slicesggplot2::geom_col()NA
labelsggplot2::geom_label()/ggrepel::geom_label_repel()label.args

Contingency table analyses

The table below provides summary about:

  • statistical test carried out for inferential statistics

  • type of effect size estimate and a measure of uncertainty for this estimate

  • functions used internally to compute these details

two-way table

Hypothesis testing

TypeDesignTestFunction used
Parametric/Non-parametricUnpairedPearson's chi-squared teststats::chisq.test()
BayesianUnpairedBayesian Pearson's chi-squared testBayesFactor::contingencyTableBF()
Parametric/Non-parametricPairedMcNemar's chi-squared teststats::mcnemar.test()
BayesianPairedNoNo

Effect size estimation

TypeDesignEffect sizeCI available?Function used
Parametric/Non-parametricUnpairedCramer'sVYeseffectsize::cramers_v()
BayesianUnpairedCramer'sVYeseffectsize::cramers_v()
Parametric/Non-parametricPairedCohen'sgYeseffectsize::cohens_g()
BayesianPairedNoNoNo

one-way table

Hypothesis testing

TypeTestFunction used
Parametric/Non-parametricGoodness of fit chi-squared teststats::chisq.test()
BayesianBayesian Goodness of fit chi-squared test(custom)

Effect size estimation

TypeEffect sizeCI available?Function used
Parametric/Non-parametricPearson'sCYeseffectsize::pearsons_c()
BayesianNoNoNo

See also

grouped_ggpiestats,ggbarstats,grouped_ggbarstats

Examples

# for reproducibilityset.seed(123)# one sample goodness of fit proportion testp<-ggpiestats(mtcars,vs)# looking at the plotp# extracting details from statistical testsextract_stats(p)#> $subtitle_data#># A tibble: 1 × 13#>statisticdfp.valuemethodeffectsize#><dbl><dbl><dbl><chr><chr>#>10.5     10.480 Chi-squared test for given probabilities Pearson's C#>estimateconf.levelconf.lowconf.highconf.methodconf.distributionn.obs#><dbl><dbl><dbl><dbl><chr><chr><int>#>10.1240.9500.426 ncp         chisq                32#>expression#><list>#>1<language>#>#> $caption_data#># A tibble: 1 × 4#>bf10prior.scalemethodexpression#><dbl><dbl><chr><list>#>10.180           1 Bayesian one-way contingency table analysis<language>#>#> $pairwise_comparisons_data#> NULL#>#> $descriptive_data#># A tibble: 2 × 4#>   vs    counts  perc .label#><fct><int><dbl><chr>#>1 1         14  43.8 44%#>2 0         18  56.2 56%#>#> $one_sample_data#> NULL#>#> $tidy_data#> NULL#>#> $glance_data#> NULL#>#> attr(,"class")#> [1] "ggstatsplot_stats" "list"# association test (or contingency table analysis)ggpiestats(mtcars,vs,cyl)

[8]ページ先頭

©2009-2025 Movatter.jp