Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Data Types | Section
/
Mastering R Programming Fundamentals
セクション 1.  11
single

single

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
タスク

スワイプしてコーディングを開始

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

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  11
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt