Loading...
Loading...
R statistical programming for data analysis, visualization, and modeling. Use for .r files.
npx skill4agent add g1joshi/agent-skills rprint("Hello, World!")
# Vector
x <- c(1, 2, 3, 4, 5)
# Mean
mean(x)
# Data Frame
df <- data.frame(
Name = c("Alice", "Bob"),
Age = c(25, 30)
)x + 1 # Adds 1 to every element in x%>%data %>%
filter(users > 100) %>%
group_by(region) %>%
summarize(total = sum(users))for