-
Notifications
You must be signed in to change notification settings - Fork 251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get docs to build again #1283
Merged
Merged
get docs to build again #1283
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
91963e2
remove dependency on StatsBase
bjarthur 68de8d5
upgrade to Documenter 0.22
bjarthur 84436e7
fix some formatting in docs
bjarthur 028ffab
be more inclusive with dependency versions
bjarthur e4a6101
mv LibGit2 dependency to tests
bjarthur 3b1243f
fix DataFrames depwarn
bjarthur 43b8b3c
add CSV to docs/Project.toml
bjarthur File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,4 +1,4 @@ | ||
using Documenter, Gadfly, Compose | ||
using Documenter, Gadfly, Compose, Cairo | ||
|
||
makedocs( | ||
modules = [Gadfly], | ||
|
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
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
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,13 +1,12 @@ | ||
using DataFrames, Gadfly | ||
using StatsBase: winsor | ||
set_default_plot_size(6inch, 3inch) | ||
|
||
labs = [ "exp", "sqrt", "log", "winsor", "linear"] | ||
funcs = [ x->60*(1 .- exp.(-0.2*x)), x->sqrt.(x)*10, x->log.(x)*10, x->winsor(x, prop=0.15), x->x*0.6 ] | ||
labs = [ "exp", "sqrt", "log", "linear"] | ||
funcs = [ x->60*(1 .- exp.(-0.2*x)), x->sqrt.(x)*10, x->log.(x)*10, x->x*0.6 ] | ||
x = [1.0:30;] | ||
D = vcat([DataFrame(x=x, y=f(x), linev=l) for (f,l) in zip(funcs, labs)]...) | ||
|
||
p1 = plot(D, x=:x, y=:y, linestyle=:linev, Geom.line ) | ||
p2 = plot(D, x=:x, y=:y, linestyle=:linev, Geom.line, | ||
Scale.linestyle_discrete(levels=["exp", "log", "sqrt", "linear", "winsor"]) ) | ||
Scale.linestyle_discrete(levels=["exp", "log", "sqrt", "linear"]) ) | ||
hstack(p1,p2) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As I understand it, for the line_linestyle test script you could have moved StatsBase into
[extras]
and[targets]
, and the docs will build as long as StatsBase is not in[deps]
and[compat]
. However, I'm ok with removing StatsBase in the line_linestyle testscript, because it simplifies things.