Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende Data Types | Section
Practice
Projects
Quizzes & Challenges
Cuestionarios
Challenges
/
Essential R Programming for Absolute Beginners - 1768563985826

bookData Types

Note
Definition

A data type defines what kind of values a variable can store and which operations are valid. It determines how data is represented in memory and how R interprets and manipulates it.

Common Data Types

Inspecting Data Types

Use the typeof() function to check a variable's data type.

Example

1234567891011
x = TRUE typeof(x) y = 42L typeof(y) z = "hello" typeof(z) w = 3.14 typeof(w)
copy
Tarea

Swipe to start coding

  1. Assign the number 10 to a variable named chapter.
  2. Display the data type of the chapter variable.

Solución

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 1. Capítulo 11
single

single

Pregunte a AI

expand

Pregunte a AI

ChatGPT

Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla

close

bookData Types

Desliza para mostrar el menú

Note
Definition

A data type defines what kind of values a variable can store and which operations are valid. It determines how data is represented in memory and how R interprets and manipulates it.

Common Data Types

Inspecting Data Types

Use the typeof() function to check a variable's data type.

Example

1234567891011
x = TRUE typeof(x) y = 42L typeof(y) z = "hello" typeof(z) w = 3.14 typeof(w)
copy
Tarea

Swipe to start coding

  1. Assign the number 10 to a variable named chapter.
  2. Display the data type of the chapter variable.

Solución

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 1. Capítulo 11
single

single

some-alt