[R] データ型とデータ構造

R言語のデータ型とデータ構造

データ型 (typeof)

integer

整数型

double

実数(浮動小数点数)型

complex

複素数型

character

文字型

logical

論理型

raw

バイト型

typeof(x)
mode(x)
storage.mode(x)

データ構造

vector

ベクトル

matrix

行列

array

配列

data frame

データフレーム

list

リスト

table

テーブル