BazerData.jl

Data manipulation utilities for Julia
Log | Files | Refs | README | LICENSE

commit 84aceb67238c0e2626817d160d3d41a8e25c09cd
parent a0cf07b9f57a8c2c17237a747373de6c9308392f
Author: Erik Loualiche <[email protected]>
Date:   Tue, 20 May 2025 18:07:32 -0500

check doc

Diffstat:
Mdocs/src/index.md | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/docs/src/index.md b/docs/src/index.md @@ -45,12 +45,13 @@ df = DataFrame(x = [1, 2, 2, "NA", missing], y = ["c", "c", "b", "z", "d"]) tabulate(df, [:x, :y], group_type = :type) # only types for all group variables tabulate(df, [:x, :y], group_type = [:value, :type]) # mix value and types ``` -I have not implemented all the features of the stata tabulate function, but I am open to [suggestions](#3). +I have not implemented all the features of the stata tabulate function, but I am open to suggestions. + ### xtile -See the [doc](https://eloualiche.github.io/BazerData.jl/dev/man/xtile_guide) or the [tests](test/UnitTests/xtile.jl) for examples. +See the [doc](https://eloualiche.github.io/BazerData.jl/dev/man/xtile_guide) or the [tests](https://github.com/eloualiche/BazerData.jl/blob/main/test/UnitTests/xtile.jl) for examples. ```julia sales = rand(10_000); a = xtile(sales, 10);