use new StatPlots df syntax in testexamples

This commit is contained in:
Daniel Schwabeneder 2017-11-30 11:01:12 +01:00
parent 1419a919aa
commit 4c55ff5df8

View File

@ -252,7 +252,7 @@ PlotExample("DataFrames",
[:(begin
import RDatasets
iris = RDatasets.dataset("datasets", "iris")
scatter(iris, :SepalLength, :SepalWidth, group=:Species,
@df iris scatter(:SepalLength, :SepalWidth, group=:Species,
title = "My awesome plot", xlabel = "Length", ylabel = "Width",
marker = (0.5, [:cross :hex :star7], 12), bg=RGB(.2,.2,.2))
end)]