Skip to content

❗ This is a read-only mirror of the CRAN R package repository. xactonomial — Inference for Functions of Multinomial Parameters. Homepage: https://sachsmc.github.io/xactonomial/ Report bugs for this package: https://github.com/sachsmc/xactonomial/issues/

License

Notifications You must be signed in to change notification settings

cran/xactonomial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

xactonomial

The goal of xactonomial is to use an exact (but computational and stochastic) method to compute a confidence interval and a function for calculation of p values in the k sample multinomial setting where interest is about a real-valued functional of the multinomial probabilities.

Installation

You can install the development version of xactonomial like so:

remotes::install_github("sachsmc/xactonomial")

but building the package from source requires a local rust environment. Instead, pre-built binaries can be found at https://sachsmc.r-universe.dev/xactonomial or used directly from R as

install.packages("xactonomial", repos = c('https://sachsmc.r-universe.dev', 'https://cloud.r-project.org'))

Example

This is a basic example which shows you how to use the main function:

library(xactonomial)

psi_ba <- function(theta) {
   theta1 <- theta[1:4]
   theta2 <- theta[5:8]
   sum(sqrt(theta1 * theta2))
   }

data <- list(T1 = c(2,1,2,1), T2 = c(0,1,3,3))
xactonomial(data, psi_ba, psi_limits = c(0, 1), maxit = 5, chunksize = 20)

About

❗ This is a read-only mirror of the CRAN R package repository. xactonomial — Inference for Functions of Multinomial Parameters. Homepage: https://sachsmc.github.io/xactonomial/ Report bugs for this package: https://github.com/sachsmc/xactonomial/issues/

Resources

License

Stars

Watchers

Forks

Packages

No packages published