Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Practice R programming
#R version 3.3.2 print("Hello, world!") print (2+3) s <- 'Hello world' print(s) print(class(s)) s<- 23.4 print(class(s)) s<- 3+4i print (class(s)) s<- 309 print(class(s)) s<- 0 print(class(s)) S<- TRUE print(class(S)) BMI<- data.frame ( gender = c("male","female","male"), height = c(4.3,6.8,7.3), weight=c(32,98,56), age=c(32,25,65) ) print(BMI)
run
|
edit
|
history
|
help
0
SampleDiscrFR.r
Example: From 'The R Book' 2nd ed. ~ 2.3.2 Generating Factor Levels...
Ex11-03-21EdsonAmanda
List of libraries in R
Functions for partial factorials, factorials, binomial coeffs., & rows of Pascale's Triangle.
calc
Assig
test
Efeito-Runge-18-03-2021
Adding text to bar plot bars -- elegantly!