switched docs url

This commit is contained in:
Thomas Breloff 2016-06-29 12:23:42 -04:00
parent 5491e40fd1
commit f087594331
2 changed files with 4 additions and 4 deletions

View File

@ -79,7 +79,7 @@
#### 0.7.0
- Check out [the summary](http://plots.readthedocs.io/en/latest/plots_v0.7/)
- Check out [the summary](http://juliaplots.github.io/plots_v0.7/)
- Revamped and simplified internals
- [Recipes, recipes, recipes](https://github.com/JuliaPlots/RecipesBase.jl/issues/6)
- [Layouts and Subplots](https://github.com/tbreloff/Plots.jl/issues/60)

View File

@ -15,10 +15,10 @@ Plots is a plotting API and toolset. My goals with the package are:
- **Intuitive**. Start generating plots without reading volumes of documentation. Commands should "just work".
- **Concise**. Less code means fewer mistakes and more efficient development/analysis.
- **Flexible**. Produce your favorite plots from your favorite package, but quicker and simpler.
- **Consistent**. Don't commit to one graphics package. Use the same code and access the strengths of all [backends](http://plots.readthedocs.io/en/latest/backends/).
- **Consistent**. Don't commit to one graphics package. Use the same code and access the strengths of all [backends](http://juliaplots.github.io/backends/).
- **Lightweight**. Very few dependencies, since backends are loaded and initialized dynamically.
Use the [preprocessing pipeline](http://plots.readthedocs.io/en/latest/pipeline/) in Plots to fully describe your visualization before it calls the backend code. This maintains modularity and allows for efficient separation of front end code, algorithms, and backend graphics. New graphical backends can be added with minimal effort.
Use the [preprocessing pipeline](http://juliaplots.github.io/pipeline/) in Plots to fully describe your visualization before it calls the backend code. This maintains modularity and allows for efficient separation of front end code, algorithms, and backend graphics. New graphical backends can be added with minimal effort.
```julia
using Plots
@ -28,6 +28,6 @@ using Plots
end
```
![waves](http://plots.readthedocs.io/en/latest/examples/img/waves.gif)
![waves](http://juliaplots.github.io/examples/img/waves.gif)
View the [full documentation](http://plots.readthedocs.io).