0Pricing
R Academy · Lesson

Lists and Data Frames

Learn about lists and data frames, and how to structure mixed types of data effectively.

1

Introduction to Lists and Data Frames

Lists and data frames are powerful data structures in R. They allow you to store different types of data in an organized manner.

Lists and Data Frames — illustration 1

2

What is a List?

A list is a flexible data structure that can store different types of elements, such as numbers, characters, and even other lists.

my_list <- list(name = 'Alice', age = 25, scores = c(90, 85, 88))

All lessons in this course

  1. Understanding Data Types
  2. Working with Vectors and Matrices
  3. Lists and Data Frames
← Back to R Academy