email: bryan256.@msn.com
blog: sql-fy.com
Twitter: @BryanCafferky
LinkedIn: linkedin.com/in/bryancafferky
Experience
Share experiences and knowledge.
Network: Get to know and help each other.
Have presentations on current relevant topics.
Create an open environment people are comfortable to share in.
Gain a better sense of what is going on out there.
Have fun and share in the excitement of new developments.
R Language and Command Line interface (CLI).
https://cran.r-project.org/bin/windows/base/
Designed for interactive single command at a time.
R Studio: An Integrated Development Environment. https://www.rstudio.com/products/rstudio/download/
A complete script development environment.
str(iris, vec.len=1)
'data.frame': 150 obs. of 5 variables:
$ Sepal.Length: num 5.1 4.9 ...
$ Sepal.Width : num 3.5 3 ...
$ Petal.Length: num 1.4 1.4 ...
$ Petal.Width : num 0.2 0.2 ...
$ Species : Factor w/ 3 levels "setosa","versicolor",..: 1 1 ...
summary(iris)
Sepal.Length | Sepal.Width | Petal.Length | Petal.Width | Species | |
---|---|---|---|---|---|
Min. :4.300 | Min. :2.000 | Min. :1.000 | Min. :0.100 | setosa :50 | |
1st Qu.:5.100 | 1st Qu.:2.800 | 1st Qu.:1.600 | 1st Qu.:0.300 | versicolor:50 | |
Median :5.800 | Median :3.000 | Median :4.350 | Median :1.300 | virginica :50 | |
Mean :5.843 | Mean :3.057 | Mean :3.758 | Mean :1.199 | NA | |
3rd Qu.:6.400 | 3rd Qu.:3.300 | 3rd Qu.:5.100 | 3rd Qu.:1.800 | NA | |
Max. :7.900 | Max. :4.400 | Max. :6.900 | Max. :2.500 | NA |
hist(iris$Petal.Width,x.lab="petal width", col="lightblue")