Lists in R

Data Science with R Programming 6 min min read Updated: Mar 07, 2026 Beginner
Lists in R
Beginner Topic 5 of 10

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

Get Newsletter

Subscibe to our newsletter and we will notify you about the newest updates on Edugators