Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lära Understanding Lists | Section
Essential R Programming for Absolute Beginners - 1768563985826

bookUnderstanding Lists

Note
Definition

A list is a flexible data type that, unlike a vector, can store elements of different types in a single object.

Creating List

To create a list, use the list() function and pass the values you want to store as arguments. You can even store a text string, a number, and a logical value together.

Example

1
list("Text", 42, TRUE)
copy

The structure of the list output differs from that of a vector, since each element is displayed with its index in double brackets.

Uppgift

Swipe to start coding

  1. Create a list named info with the information on the current chapter and course: 'R Introduction', 6 (section), 1 (chapter in the section), 41 (chapter overall).
  2. Output the value of this list.

Lösning

Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 1. Kapitel 41
single

single

Fråga AI

expand

Fråga AI

ChatGPT

Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal

close

bookUnderstanding Lists

Svep för att visa menyn

Note
Definition

A list is a flexible data type that, unlike a vector, can store elements of different types in a single object.

Creating List

To create a list, use the list() function and pass the values you want to store as arguments. You can even store a text string, a number, and a logical value together.

Example

1
list("Text", 42, TRUE)
copy

The structure of the list output differs from that of a vector, since each element is displayed with its index in double brackets.

Uppgift

Swipe to start coding

  1. Create a list named info with the information on the current chapter and course: 'R Introduction', 6 (section), 1 (chapter in the section), 41 (chapter overall).
  2. Output the value of this list.

Lösning

Switch to desktopByt till skrivbordet för praktisk övningFortsätt där du är med ett av alternativen nedan
Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 1. Kapitel 41
single

single

some-alt