Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Understanding Lists | Section
Practice
Projects
Quizzes & Challenges
Quizze
Challenges
/
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.

Aufgabe

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ösung

War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 1. Kapitel 41
single

single

Fragen Sie AI

expand

Fragen Sie AI

ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

close

bookUnderstanding Lists

Swipe um das Menü anzuzeigen

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.

Aufgabe

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ösung

Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 1. Kapitel 41
single

single

some-alt