Data Types
Numeric (numeric/double
)
Numbers with or without decimal points, stored as double-precision by default.
Integer (integer
)
Whole numbers stored as integers using the L
suffix.
Character (character
)
Text values enclosed in quotes, representing sequences of characters.
Logical (logical
)
Values representing truth: TRUE
, FALSE
, or the result of a comparison.
Raw (raw
)
Binary data stored as raw bytes, mostly for low-level operations.
Null (NULL
)
Represents the absence of a value or an undefined object — similar to None
in Python.