Nothing
A utility package for converting R regression model formula to Julia GLM.jl and MixedModels.jl syntax.
See {jlme}
for an example
application.
# install.packages("devtools")
devtools::install_github("yjunechoe/JuliaFormulae")
library(JuliaFormulae)
r
julia_formula(y ~ x + (x || g))
#> y ~ x + zerocorr(x | g)
r
julia_formula(y ~ x + I(x * 2))
#> y ~ x + protect(x * 2)
r
julia_formula(y ~ a:b)
#> y ~ a & b
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)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.