Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Ggplot
#R version 3.3.2 library(ggplot2) data(iris) str(iris) head(iris) attach(iris) #Scatterplot ggplot(data=iris, aes(Petal.Length, Petal.Width, colour=Species))+geom_point()+geom_smooth(method=lm)+ggtitle("Scatterplot Sample") #Boxplot ggplot(data=iris, aes(x=Species, y=Petal.Length, colour=Species))+geom_boxplot()+ggtitle("Boxplot Example") #Histogram ggplot(data=iris, aes(Sepal.Length, fill=Species))+geom_histogram(binwidth=.05)
run
|
edit
|
history
|
help
0
matrix
Sierpinski curve
Call option formula for Geometric Laplace distributed stock
09-09-2020GramSchmdit
Chapter 5: Sample from N(0,1)
Die sim
Cos R Example
16-09-2020ExVitorb
Dbinom
Mathematical operations 1