In [4]:
using RDatasets, Plots #; dataframes()
iris = dataset("datasets", "iris");
default(size=(600,400));
In [3]:
gadfly();
scatter(iris, :SepalLength, :SepalWidth, group=:Species, ms=12, m=[:+,:h,:s])
Out[3]:
In [ ]:
plot!(u->6+2*sin(u), u->3+cos(u), 0, 2π, lab="an oval", fill=3)
plot!(Any[[6],[3]], t=[:vline,:hline], w=4, c=RGB(1,0,0))
title("Playing around with series")
In [ ]:
scatter(iris, :SepalLength, [:PetalLength,:PetalWidth,:SepalWidth], m=:auto, ms=10, gui=false)
In [ ]:
species = iris[:Species]
split(species)
In [ ]:
using StatsBase
methods(svd)
In [ ]:
arr = Array(iris[[:SepalLength,:SepalWidth]])
pca(arr)
In [ ]:
Pkg.update()
In [ ]:
scatter([0,0],ms=40,m=:s)
In [5]:
bar(iris, :Species, :SepalLength)
Out[5]:
In [ ]:
bar(iris, :SepalLength, :Species)
In [ ]:
findnext([1,2,1],1,4)
In [ ]:
d = Dict(); get(d,:xticks,:auto)
In [ ]:
issubtype(ASCIIString,ASCIIString)
In [ ]: