Blog Post 3 - Favorite R Features
Li Wang 2022-06-30
rmarkdown::render(
"../_Rmd/2022-06-30-blog-post-Module8.Rmd",
output_format = "github_document",
output_dir = "../_posts",
output_options = list(html_preview= FALSE))
Blog Post 3
For me, the coolest thing I’ve learned about programming in R is that R has lots of libraries with a huge variety of applications.
For instance, “TidyVerse” - collection of R packages that share common philosophies and are designed to work together, “ggplot2” - R packages that create lots of plots.
Before using them, we need to install these packages and Load these libraries:
library(tidyverse)
library(ggplot2)