This function runs the appRiori Shiny app.
appRiori(...)
appRiori(...)
... |
Arguments passed on to |
No return value, called for side effects
## Not run: # Run the app with default settings library(appRiori) appRiori() ## End(Not run)
## Not run: # Run the app with default settings library(appRiori) appRiori() ## End(Not run)
Extract the estimates and the inferential tests for a contrasts
defined by hypr
contrasts_summary(model, ...) ## Default S3 method: contrasts_summary(model, ...) ## S3 method for class 'merMod' contrasts_summary(model, ...) ## S3 method for class 'glmerMod' contrasts_summary(model, ...)
contrasts_summary(model, ...) ## Default S3 method: contrasts_summary(model, ...) ## S3 method for class 'merMod' contrasts_summary(model, ...) ## S3 method for class 'glmerMod' contrasts_summary(model, ...)
model |
|
... |
additional options (not used at the moment) |
A results table of class hypr_contrasts_results
.
library(MASS) df<-MASS::anorexia df$Treat = factor(df$Treat) library ( hypr ) h <- hypr ( ~ 1/2 * CBT + 1/2 * FT - Cont , ~ CBT - FT , levels = c( "CBT" , "Cont" , "FT" )) contrasts(df$Treat,how.many=2)<-cmat(h) model = lm ( Prewt ~ Treat , data = df ) contrasts_summary ( model )
library(MASS) df<-MASS::anorexia df$Treat = factor(df$Treat) library ( hypr ) h <- hypr ( ~ 1/2 * CBT + 1/2 * FT - Cont , ~ CBT - FT , levels = c( "CBT" , "Cont" , "FT" )) contrasts(df$Treat,how.many=2)<-cmat(h) model = lm ( Prewt ~ Treat , data = df ) contrasts_summary ( model )
Pretty print the estimates and the inferential tests for a contrasts
defined by hypr
## S3 method for class 'hypr_contrasts_results' print(x, ...)
## S3 method for class 'hypr_contrasts_results' print(x, ...)
x |
an object of class |
... |
additional options (not used at the moment) |
A results table