readme
This commit is contained in:
parent
bcb9ac5501
commit
2649d97d69
20
README.md
20
README.md
@ -180,13 +180,13 @@ Keyword | Default | Type | Aliases
|
|||||||
`:legend` | `true` | Plot | `:leg`
|
`:legend` | `true` | Plot | `:leg`
|
||||||
`:show` | `false` | Plot | `:display`
|
`:show` | `false` | Plot | `:display`
|
||||||
`:size` | `(800,600)` | Plot | `:windowsize`, `:wsize`
|
`:size` | `(800,600)` | Plot | `:windowsize`, `:wsize`
|
||||||
`:title` | `` | Plot | `:`
|
`:title` | `` | Plot |
|
||||||
`:windowtitle` | `Plots.jl` | Plot | `:wtitle`
|
`:windowtitle` | `Plots.jl` | Plot | `:wtitle`
|
||||||
`:xlabel` | `` | Plot | `:xlab`
|
`:xlabel` | `` | Plot | `:xlab`
|
||||||
`:xticks` | `true` | Plot | `:`
|
`:xticks` | `true` | Plot |
|
||||||
`:ylabel` | `` | Plot | `:ylab`
|
`:ylabel` | `` | Plot | `:ylab`
|
||||||
`:yrightlabel` | `` | Plot | `:y2lab`, `:y2label`, `:ylab2`, `:ylabel2`, `:ylabelright`, `:ylabr`, `:yrlab`
|
`:yrightlabel` | `` | Plot | `:y2lab`, `:y2label`, `:ylab2`, `:ylabel2`, `:ylabelright`, `:ylabr`, `:yrlab`
|
||||||
`:yticks` | `true` | Plot | `:`
|
`:yticks` | `true` | Plot |
|
||||||
|
|
||||||
|
|
||||||
Plot types:
|
Plot types:
|
||||||
@ -200,13 +200,13 @@ Type | Desc | Aliases
|
|||||||
`:steppost` | Step plot (horizontal then vertical) | `:stair`, `:stairs`, `:step`
|
`:steppost` | Step plot (horizontal then vertical) | `:stair`, `:stairs`, `:step`
|
||||||
`:sticks` | Vertical lines | `:stem`
|
`:sticks` | Vertical lines | `:stem`
|
||||||
`:scatter` | Points, no lines | `:dots`
|
`:scatter` | Points, no lines | `:dots`
|
||||||
`:heatmap` | Colored regions by density | `:`
|
`:heatmap` | Colored regions by density |
|
||||||
`:hexbin` | Similar to heatmap | `:`
|
`:hexbin` | Similar to heatmap |
|
||||||
`:hist` | Histogram (doesn't use x) | `:histogram`
|
`:hist` | Histogram (doesn't use x) | `:histogram`
|
||||||
`:bar` | Bar plot (centered on x values) | `:`
|
`:bar` | Bar plot (centered on x values) |
|
||||||
`:hline` | Horizontal line (doesn't use x) | `:`
|
`:hline` | Horizontal line (doesn't use x) |
|
||||||
`:vline` | Vertical line (doesn't use x) | `:`
|
`:vline` | Vertical line (doesn't use x) |
|
||||||
`:ohlc` | Open/High/Low/Close chart (expects y is vector of 4-tuples) | `:`
|
`:ohlc` | Open/High/Low/Close chart (expects y is vector of 4-tuples) |
|
||||||
|
|
||||||
|
|
||||||
Line styles:
|
Line styles:
|
||||||
@ -216,7 +216,7 @@ Type | Aliases
|
|||||||
`:auto` | `:a`
|
`:auto` | `:a`
|
||||||
`:solid` | `:s`
|
`:solid` | `:s`
|
||||||
`:dash` | `:d`
|
`:dash` | `:d`
|
||||||
`:dot` | `:`
|
`:dot` |
|
||||||
`:dashdot` | `:dd`
|
`:dashdot` | `:dd`
|
||||||
`:dashdotdot` | `:ddd`
|
`:dashdotdot` | `:ddd`
|
||||||
|
|
||||||
|
|||||||
@ -94,7 +94,7 @@ const examples = PlotExample[
|
|||||||
function createStringOfMarkDownCodeValues(arr, prefix = "")
|
function createStringOfMarkDownCodeValues(arr, prefix = "")
|
||||||
string("`", prefix, join(arr, "`, `$prefix"), "`")
|
string("`", prefix, join(arr, "`, `$prefix"), "`")
|
||||||
end
|
end
|
||||||
createStringOfMarkDownSymbols(arr) = createStringOfMarkDownCodeValues(arr, ":")
|
createStringOfMarkDownSymbols(arr) = isempty(arr) ? "" : createStringOfMarkDownCodeValues(arr, ":")
|
||||||
|
|
||||||
|
|
||||||
function generate_markdown(pkgname::Symbol)
|
function generate_markdown(pkgname::Symbol)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user