This commit is contained in:
Thomas Breloff 2015-09-28 15:49:46 -04:00
parent d3d1181769
commit cc3311b8eb
7 changed files with 7 additions and 6 deletions

View File

@ -123,7 +123,7 @@ function generate_markdown(pkgname::Symbol)
write(md, "- Supported values for marker: $(createStringOfMarkDownSymbols(supportedMarkers(pkg)))\n") write(md, "- Supported values for marker: $(createStringOfMarkDownSymbols(supportedMarkers(pkg)))\n")
write(md, "- Is `subplot`/`subplot!` supported? $(subplotSupported(pkg) ? "Yes" : "No")\n\n") write(md, "- Is `subplot`/`subplot!` supported? $(subplotSupported(pkg) ? "Yes" : "No")\n\n")
write(md, "### Initialize\n\n```julia\nusing Plots\n$(pkgname)!()\n```\n\n") write(md, "### Initialize\n\n```julia\nusing Plots\n$(pkgname)()\n```\n\n")
for (i,example) in enumerate(examples) for (i,example) in enumerate(examples)

View File

@ -11,7 +11,7 @@
```julia ```julia
using Plots using Plots
gadfly!() gadfly()
``` ```
### Lines ### Lines

View File

@ -11,7 +11,7 @@
```julia ```julia
using Plots using Plots
immerse!() immerse()
``` ```
### Lines ### Lines

View File

@ -11,7 +11,7 @@
```julia ```julia
using Plots using Plots
pyplot!() pyplot()
``` ```
### Lines ### Lines

View File

@ -11,7 +11,7 @@
```julia ```julia
using Plots using Plots
qwt!() qwt()
``` ```
### Lines ### Lines

View File

@ -208,6 +208,7 @@ __Tip__: Call `gui()` to display the plot in a window. Interactivity depends on
- [x] Plot vectors/matrices/functions - [x] Plot vectors/matrices/functions
- [x] Plot DataFrames - [x] Plot DataFrames
- [x] Grouping - [x] Grouping
- [ ] Annotations
- [ ] Scales - [ ] Scales
- [ ] Categorical Inputs (strings, etc... for hist, bar? or can split one series into multiple?) - [ ] Categorical Inputs (strings, etc... for hist, bar? or can split one series into multiple?)
- [ ] Custom markers - [ ] Custom markers

View File

@ -11,7 +11,7 @@
```julia ```julia
using Plots using Plots
winston!() winston()
``` ```
### Lines ### Lines