Skip to content
Course Notes: Intermediate R
Course Notes
Use this workspace to take notes, store code snippets, or build your own interactive cheatsheet! For courses that use data, the datasets will be available in the datasets folder.
# Load necessary library
library(tibble)
# Create a sample dataframe
students_df <- tibble(
StudentName = c("Alice", "Bob", "Charlie", "Diana"),
Subject = c("Math", "Science", "History", "Math"),
Grade = c(90, 85, 88, 95)
)
# Display the dataframe
students_dfTake Notes
Add notes here about the concepts you've learned and code cells with code you want to keep.
Add your notes here
# Add your code snippets here