forked from JuliaData/DataFrames.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.jl
56 lines (51 loc) · 1.72 KB
/
make.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using Documenter
using DataFrames
using CategoricalArrays
DocMeta.setdocmeta!(DataFrames, :DocTestSetup, :(using DataFrames); recursive=true)
# Build documentation.
# ====================
makedocs(
# options
modules = [DataFrames],
doctest = true,
clean = false,
sitename = "DataFrames.jl",
format = Documenter.HTML(
canonical = "https://juliadata.github.io/DataFrames.jl/stable/",
assets = ["assets/favicon.ico"],
edit_link = "main"
),
pages = Any[
"Introduction" => "index.md",
"User Guide" => Any[
"Getting Started" => "man/getting_started.md",
"Working with DataFrames" => "man/working_with_dataframes.md",
"Importing and Exporting Data (I/O)" => "man/importing_and_exporting.md",
"Joins" => "man/joins.md",
"Split-apply-combine" => "man/split_apply_combine.md",
"Reshaping" => "man/reshaping_and_pivoting.md",
"Sorting" => "man/sorting.md",
"Categorical Data" => "man/categorical.md",
"Missing Data" => "man/missing.md",
"Data manipulation frameworks" => "man/querying_frameworks.md",
"Comparison with Python/R/Stata" => "man/comparisons.md"
],
"API" => Any[
"Types" => "lib/types.md",
"Functions" => "lib/functions.md",
"Indexing" => "lib/indexing.md",
hide("Internals" => "lib/internals.md"),
]
],
strict = true
)
# Deploy built documentation from Travis.
# =======================================
deploydocs(
# options
repo = "github.com/JuliaData/DataFrames.jl.git",
target = "build",
deps = nothing,
make = nothing,
devbranch = "main"
)