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.

JuliaFormulae

Lifecycle: experimental R-CMD-check Codecov test coverage

A utility package for converting R regression model formula to Julia GLM.jl and MixedModels.jl syntax.

See {jlme} for an example application.

Installation

# install.packages("devtools")
devtools::install_github("yjunechoe/JuliaFormulae")
library(JuliaFormulae)

Supported conversions

Example

julia_formula(
  y ~ a + I(a * 2) + b + a:b  + (a || g) + (b | g)
)
#> y ~ a + protect(a * 2) + b + (a & b) + zerocorr(a | g) + (b | 
#>     g)

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.