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, "- 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)

View File

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

View File

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

View File

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

View File

@ -11,7 +11,7 @@
```julia
using Plots
qwt!()
qwt()
```
### 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 DataFrames
- [x] Grouping
- [ ] Annotations
- [ ] Scales
- [ ] Categorical Inputs (strings, etc... for hist, bar? or can split one series into multiple?)
- [ ] Custom markers

View File

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