Vijay Ivaturi
Vijay Ivaturi
consider the use of `@orderby` below. Look at the last example. Somehow, the syntax allows the use of `,` does not error, but provides an incorrect result. ```julia julia> dd...
Trying to subset `b==0` while still preserving the `missing` in `b` ```julia julia> dd = DataFrame(a = [1, 2, 3], b = [1, missing, 0]) 3×2 DataFrame Row │ a...
It would be nice to have a small copy-paste button in every code chunk so that users browsing through rendered html's can access code immediately without selection and copying
I understand that we can use `pandoc_options` in `weave()` to request a table of contents and other options such as depth. It would be useful to have support for these...
It would be nice to allow this pattern where 1. provide inline julia code in the front matter 2. the `args` be passed as options such that one can use...
I am using RCall in `.jmd` file where I used the `mtcars` dataset to make a simple ggplot. ```julia using RCall ``` ```julia mtcars = rcopy(R"mtcars") ``` ```julia R""" (p
Are there are any plans to support stratification for the `K-M` fit?