-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1116 from bjarthur/bja/docs
refactor docs to use docstrings and have a gallery
- Loading branch information
Showing
109 changed files
with
2,142 additions
and
3,038 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 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 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,7 +1,3 @@ | ||
Documenter | ||
Cairo | ||
RDatasets | ||
Distributions | ||
DataFrames | ||
Colors | ||
Showoff |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,14 @@ | ||
```@meta | ||
Author = "Ben Arthur" | ||
``` | ||
# Relationship with Compose.jl | ||
|
||
Gadfly and Compose are tightly intertwined. As such, if you want to checkout | ||
the master branch of Gadfly to get the latest features and bug fixes, you'll | ||
likely also need to checkout Compose. | ||
|
||
Moreover, if you're a contributor, you should probably tag releases of Gadfly | ||
and Compose simultaneously, and ideally submit a single PR to METADATA containing | ||
both. It is for this reason that neither uses | ||
[attobot](https://github.com/attobot/attobot), as it has no mechanism to do | ||
this. |
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 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 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,9 @@ | ||
# Coordinates | ||
|
||
## [`Coord.cartesian`](@ref) | ||
|
||
```@example | ||
using Gadfly | ||
set_default_plot_size(14cm, 8cm) | ||
plot(sin, 0, 20, Coord.cartesian(xmin=2π, xmax=4π, ymin=-2, ymax=2)) | ||
``` |
Oops, something went wrong.