-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use doctests throughout documentation, and add missing functions to docs
- Loading branch information
Showing
19 changed files
with
1,125 additions
and
333 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,40 @@ | ||
# DataFrames Documentation Outline | ||
# DataFrames.jl | ||
|
||
Welcome to the DataFrames documentation! This resource aims to teach you everything you need | ||
to know to get up and running with tabular data manipulation using the DataFrames.jl package | ||
and the Julia language. If there is something you expect DataFrames to be capable of, but | ||
cannot figure out how to do, please reach out with questions in Domains/Data on | ||
[Discourse](https://discourse.julialang.org/new-topic?title=[DataFrames%20Question]:%20&body=%23%20Question:%0A%0A%23%20Dataset%20(if%20applicable):%0A%0A%23%20Minimal%20Working%20Example%20(if%20applicable):%0A&category=Domains/Data&tags=question). | ||
Please report bugs by | ||
[opening an issue](https://github.com/JuliaData/DataFrames.jl/issues/new). You can follow | ||
the [**source**]() links throughout the documentation to jump right to the | ||
source files on GitHub to make pull requests for improving the documentation and function | ||
capabilities. Please review | ||
[DataFrames contributing guidelines](https://github.com/JuliaData/DataFrames.jl/blob/master/CONTRIBUTING.md) | ||
before submitting your first PR! Information on specific versions can be found on the [Release page](https://github.com/JuliaData/DataFrames.jl/releases). | ||
|
||
## Package Manual | ||
|
||
```@contents | ||
Pages = ["man/getting_started.md", "man/joins.md", "man/split_apply_combine.md", "man/reshaping_and_pivoting.md", "man/sorting.md", "man/categorical.md", "man/querying_frameworks.md"] | ||
Pages = ["man/getting_started.md", | ||
"man/joins.md", | ||
"man/split_apply_combine.md", | ||
"man/reshaping_and_pivoting.md", | ||
"man/sorting.md", | ||
"man/categorical.md", | ||
"man/querying_frameworks.md"] | ||
Depth = 2 | ||
``` | ||
|
||
## API | ||
|
||
```@contents | ||
Pages = ["lib/maintypes.md", "lib/manipulation.md", "lib/utilities.md"] | ||
Pages = ["lib/types.md", "lib/functions.md"] | ||
Depth = 2 | ||
``` | ||
|
||
## Documentation Index | ||
## Index | ||
|
||
```@index | ||
Pages = ["lib/maintypes.md", "lib/manipulation.md", "lib/utilities.md"] | ||
Pages = ["lib/types.md", "lib/functions.md"] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
```@meta | ||
CurrentModule = DataFrames | ||
``` | ||
|
||
# Functions | ||
|
||
```@index | ||
Pages = ["functions.md"] | ||
``` | ||
|
||
## Grouping, Joining, and Split-Apply-Combine | ||
|
||
```@docs | ||
aggregate | ||
by | ||
colwise | ||
groupby | ||
join | ||
melt | ||
stack | ||
unstack | ||
stackdf | ||
meltdf | ||
``` | ||
|
||
## Basics | ||
|
||
```@docs | ||
categorical! | ||
combine | ||
completecases | ||
deleterows! | ||
describe | ||
dropnull | ||
dropnull! | ||
eachcol | ||
eachrow | ||
eltypes | ||
head | ||
names | ||
names! | ||
nonunique | ||
nullable! | ||
order | ||
rename! | ||
rename | ||
show | ||
showcols | ||
size | ||
sort | ||
sort! | ||
tail | ||
unique! | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.