Online R Programming Compiler Online R Compiler Initializing R Environment... Run Code Clear Output Download PDF R Code # Welcome to the Online R Compiler! # You can write and execute R code here. # Simple greeting greeting <- "Hello, World from R!" print(greeting) # Create a numeric vector numbers <- c(10, 25, 12, 45, 8, 33, 19) print("Numeric vector created:") print(numbers) # Calculate and print the summary statistics print("Summary of the vector:") summary(numbers) Output