セクション 2. 章 1
single
Data Types
メニューを表示するにはスワイプしてください
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
1234567891011x = TRUE typeof(x) y = 42L typeof(y) z = "hello" typeof(z) w = 3.14 typeof(w)
タスク
スワイプしてコーディングを開始
- Assign the number
10to a variable namedchapter. - Display the data type of the
chaptervariable.
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 2. 章 1
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください