Lists in R
Lists
Lists allow storing different data types in a single structure.
r
list_example <- list(name="John", age=25, score=90)
print(list_example)
Next Tutorial: Data Frames in R

