The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
The peticontrast package provides a simple way to apply
sum coding (effect coding) to factors in OLS models.
In R, the default is Treatment Coding
(contr.treatment), where each level is compared to a
reference category (baseline). The intercept represents the mean of that
baseline category.
Sum Coding (implemented here as
apply_peticontrast) compares each level to the
grand mean (trend) of all categories. In this case: -
The intercept represents the overall average. - The coefficients
represent the deviation of each category from that average.
This is particularly useful for seasonal data where you want to see how each period (e.g., Quarter) differs from the yearly trend.
# Internal use onlylibrary(peticontrast)
df <- data.frame(Month = factor(c("Jan", "Feb", "Mar", "Apr")))
df <- apply_peticontrast(df, "Month")
summary(lm(Value ~ Month, data = df))These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.